Skip to content

Instantly share code, notes, and snippets.

@Jossdz
Created December 8, 2018 18:13
Show Gist options
  • Save Jossdz/b1f885ff535a4558796d784a47f6708d to your computer and use it in GitHub Desktop.
Save Jossdz/b1f885ff535a4558796d784a47f6708d to your computer and use it in GitHub Desktop.
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