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
Create a page that contains information about a session. Barcelona example: https://barcelona.rustfest.eu/talks/
The page can be made by creating a sessions component in the src/pages directory.
sessions
src/pages
Contains the speaker component from #6 Links to to the detail pages from #7
Session data can be added by copying the content/sessions/example.md file.
content/sessions/example.md
All sessions can be selected with the following query. Speakers are automatically linked.
allSessions: allMarkdownRemark( filter: { fields: { collection: { eq: "sessions" } } } ) { nodes { fields { speakers { frontmatter { name } } } frontmatter { title date speakers } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create a page that contains information about a session. Barcelona example: https://barcelona.rustfest.eu/talks/
The page can be made by creating a
sessions
component in thesrc/pages
directory.Contains the speaker component from #6
Links to to the detail pages from #7
Session data can be added by copying the
content/sessions/example.md
file.All sessions can be selected with the following query. Speakers are automatically linked.
The text was updated successfully, but these errors were encountered: