mirror of
https://github.com/kingomarnajjar/gatsby-starter-netlify-cms.git
synced 2026-07-25 22:27:24 +10:00
about page to admin
This commit is contained in:
parent
66d65e4597
commit
ef6ebf36e4
5 changed files with 29 additions and 58 deletions
|
|
@ -16,9 +16,6 @@ exports.createPages = ({ boundActionCreators, graphql }) => {
|
|||
path
|
||||
date
|
||||
title
|
||||
aboutData {
|
||||
paragraph
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,11 +3,15 @@ layout: about
|
|||
path: /about
|
||||
templateKey: 'about-page'
|
||||
title: A Dance With Dragons
|
||||
aboutData:
|
||||
- paragraph: "The Dothraki do things in their own time, for their own reasons. Fire and blood. When you play the game of thrones, you win or you die. The Dothraki do things in their own time, for their own reasons. What is dead may never die."
|
||||
- paragraph: "Bastards are born of passion, aren't they? We don't despise them in Dorne. When you play the game of thrones, you win or you die. More pigeon pie, please. More pigeon pie, please. A forked purple lightning bolt, on black field speckled with four-pointed stars. The Knight of Lemonwood."
|
||||
- paragraph: "I pledge my life and honor to the Night's Watch, for this night and all the nights to come. The War of the 5 kings. I would like a trial by combat."
|
||||
- paragraph: "A Lannister always pays his debts. King in the North. As High as Honor. Dunc the Lunk, thick as a castle wall. I would like a trial by combat. The night is dark and full of terrors. You know nothing, Jon Snow. Bastards are born of passion, aren't they? We don't despise them in Dorne."
|
||||
- paragraph: "When you play the game of thrones, you win or you die. It's ten thousand miles between Kings landing and the wall. The battle of the redgrass field. When you play the game of thrones, you win or you die. The battle of the redgrass field. May the Father judge him justly."
|
||||
- paragraph: "The battle of the redgrass field. A good act does not wash out the bad, nor a bad act the good. Each should have its own reward. Unbowed, Unbent, Unbroken. The tourney of Ashford Meadows. The battle of the redgrass field. I would like a trial by combat. More pigeon pie, please. The Dothraki do things in their own time, for their own reasons. When you play the game of thrones, you win or you die. The wolf and the lion. The War of the 5 kings. King in the North. It is rare to meet a Lannister who shares my enthusiasm for dead Lannisters. Unbowed, Unbent, Unbroken. The battle of the redgrass field."
|
||||
---
|
||||
The Dothraki do things in their own time, for their own reasons. Fire and blood. When you play the game of thrones, you win or you die. The Dothraki do things in their own time, for their own reasons. What is dead may never die.
|
||||
|
||||
Bastards are born of passion, aren't they? We don't despise them in Dorne. When you play the game of thrones, you win or you die. More pigeon pie, please. More pigeon pie, please. A forked purple lightning bolt, on black field speckled with four-pointed stars. The Knight of Lemonwood.
|
||||
|
||||
I pledge my life and honor to the Night's Watch, for this night and all the nights to come. The War of the 5 kings. I would like a trial by combat.
|
||||
|
||||
A Lannister always pays his debts. King in the North. As High as Honor. Dunc the Lunk, thick as a castle wall. I would like a trial by combat. The night is dark and full of terrors. You know nothing, Jon Snow. Bastards are born of passion, aren't they? We don't despise them in Dorne.
|
||||
|
||||
When you play the game of thrones, you win or you die. It's ten thousand miles between Kings landing and the wall. The battle of the redgrass field. When you play the game of thrones, you win or you die. The battle of the redgrass field. May the Father judge him justly.
|
||||
|
||||
The battle of the redgrass field. A good act does not wash out the bad, nor a bad act the good. Each should have its own reward. Unbowed, Unbent, Unbroken. The tourney of Ashford Meadows. The battle of the redgrass field. I would like a trial by combat. More pigeon pie, please. The Dothraki do things in their own time, for their own reasons. When you play the game of thrones, you win or you die. The wolf and the lion. The War of the 5 kings. King in the North. It is rare to meet a Lannister who shares my enthusiasm for dead Lannisters. Unbowed, Unbent, Unbroken. The battle of the redgrass field.
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ export default function Index({ data }) {
|
|||
return (
|
||||
<section className="section">
|
||||
<div className="container">
|
||||
{posts.filter(post => post.node.frontmatter.title.length > 0).map(({ node: post }) => {
|
||||
{posts.filter(post => post.node.frontmatter.templateKey === 'blog-post').map(({ node: post }) => {
|
||||
return (
|
||||
<div className="content" style={{ border: '1px solid #eaecee', padding: '2em 4em' }} key={post.id}>
|
||||
<p>
|
||||
|
|
@ -40,6 +40,7 @@ export const pageQuery = graphql`
|
|||
id
|
||||
frontmatter {
|
||||
title
|
||||
templateKey
|
||||
date(formatString: "MMMM DD, YYYY")
|
||||
path
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,63 +1,31 @@
|
|||
import React from 'react';
|
||||
|
||||
export default ({ data }) => (
|
||||
<section className="section section--gradient">
|
||||
<div className="container">
|
||||
<div className="columns">
|
||||
<div className="column is-7">
|
||||
<div className="section">
|
||||
<h2 className="title is-size-3 has-text-primary is-bold-light">A Dance With Dragons</h2>
|
||||
<div className="content is-serif">
|
||||
<p>
|
||||
The Dothraki do things in their own time, for their own reasons. Fire and blood. When you play the game
|
||||
of thrones, you win or you die. The Dothraki do things in their own time, for their own reasons. What is
|
||||
dead may never die.
|
||||
</p>
|
||||
<p>
|
||||
Bastards are born of passion, aren't they? We don't despise them in Dorne. When you play the game of
|
||||
thrones, you win or you die. More pigeon pie, please. More pigeon pie, please. A forked purple lightning
|
||||
bolt, on black field speckled with four-pointed stars. The Knight of Lemonwood.
|
||||
</p>
|
||||
<p>
|
||||
I pledge my life and honor to the Night's Watch, for this night and all the nights to come. The War of
|
||||
the 5 kings. I would like a trial by combat.
|
||||
</p>
|
||||
<p>
|
||||
A Lannister always pays his debts. King in the North. As High as Honor. Dunc the Lunk, thick as a castle
|
||||
wall. I would like a trial by combat. The night is dark and full of terrors. You know nothing, Jon Snow.
|
||||
Bastards are born of passion, aren't they? We don't despise them in Dorne.
|
||||
</p>
|
||||
<p>
|
||||
When you play the game of thrones, you win or you die. It's ten thousand miles between Kings landing and
|
||||
the wall. The battle of the redgrass field. When you play the game of thrones, you win or you die. The
|
||||
battle of the redgrass field. May the Father judge him justly.
|
||||
</p>
|
||||
<p>
|
||||
The battle of the redgrass field. A good act does not wash out the bad, nor a bad act the good. Each
|
||||
should have its own reward. Unbowed, Unbent, Unbroken. The tourney of Ashford Meadows. The battle of the
|
||||
redgrass field. I would like a trial by combat. More pigeon pie, please. The Dothraki do things in their
|
||||
own time, for their own reasons. When you play the game of thrones, you win or you die. The wolf and the
|
||||
lion. The War of the 5 kings. King in the North. It is rare to meet a Lannister who shares my enthusiasm
|
||||
for dead Lannisters. Unbowed, Unbent, Unbroken. The battle of the redgrass field.
|
||||
</p>
|
||||
export default ({ data }) => {
|
||||
const { markdownRemark: post } = data;
|
||||
return (
|
||||
<section className="section section--gradient">
|
||||
<div className="container">
|
||||
<div className="columns">
|
||||
<div className="column is-7">
|
||||
<div className="section">
|
||||
<h2 className="title is-size-3 has-text-primary is-bold-light">{post.frontmatter.title}</h2>
|
||||
<div className="content" dangerouslySetInnerHTML={{ __html: post.html }} />
|
||||
</div>
|
||||
</div>
|
||||
<div className="column is-5" />
|
||||
</div>
|
||||
<div className="column is-5" />
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export const aboutPageQuery = graphql`
|
||||
query AboutPage($path: String!) {
|
||||
markdownRemark(frontmatter: { path: { eq: $path } }) {
|
||||
html
|
||||
frontmatter {
|
||||
path
|
||||
title
|
||||
aboutData {
|
||||
paragraph
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,3 +27,4 @@ collections:
|
|||
- {label: "Layout", name: "layout", widget: "hidden", default: "about"}
|
||||
- {label: "Path", name: "path", widget: "hidden", default: "/about"}
|
||||
- {label: "Title", name: "title", widget: "string"}
|
||||
- {label: "Body", name: "body", widget: "markdown"}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue