Created
December 8, 2018 18:13
-
-
Save Jossdz/386a54924a5b8573583be61904fa3502 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import styled from 'styled-components' | |
import { graphql } from 'gatsby' | |
import Section from '../style/Section' | |
const H0 = styled.h1` | |
font-size: 2.5rem; | |
color: white; | |
` | |
export default ({data}) => { | |
console.log(data) | |
return <div> | |
<Section> | |
<H0>Blog</H0> | |
</Section> | |
</div> | |
} | |
export const get_all_post = graphql` | |
query get_all_post{ | |
allMarkdownRemark{ | |
edges{ | |
node{ | |
frontmatter{ | |
title | |
date | |
excerpt | |
} | |
} | |
} | |
} | |
} | |
` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment