We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to use this template, but it would be more helpful if people could navigate between the blog post.
Thanks
The text was updated successfully, but these errors were encountered:
Bit late but I was looking for this too; I ended up grabbing the following code from the gatsby starter template:
<nav> <ul style={{ display: `flex`, flexWrap: `wrap`, justifyContent: `space-between`, listStyle: `none`, padding: 0, }} > <li> {previous && ( <Link to={previous.fields.slug} rel="prev"> ← {previous.frontmatter.title} </Link> )} </li> {/* HOME PAGE LINK -- TO BE IMPLEMENTED */} {/* <li> <Link to={`/`}>{siteTitle}</Link> </li> */} <li> {next && ( <Link to={next.fields.slug} rel="next"> {next.frontmatter.title} → </Link> )} </li> </ul> </nav>
Sorry, something went wrong.
No branches or pull requests
I want to use this template, but it would be more helpful if people could navigate between the blog post.
Thanks
The text was updated successfully, but these errors were encountered: