You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Content pages are stored in the content/ directory. Each content page is a Goldmark-flavored Markdown (.md) file. To contribute to the site content, you may edit the Markdown files directly, or add new ones. The page's URL will be determined by its location in the folder structure.
Front matter
At the top of each Markdown file is metadata called "front matter", separated from the rest of the file by three dashes (---) on either side. The following front matter information will be used by the site:
title populates the heading/banner at the top of the page, and if the page will appear in the top navigation, this value will appear there as well.
menu indicates which, if any, menu(s) the page should appear in.
Currently, the only supported values are "main" (the top navigation that appears on every page) and "resources" (the buttons that appear on the homepage and the Resources page to link to the available resources).
weight determines the order of the page in a menu.
Higher values are "more" weight, which means the item "falls" to the bottom of the list, and lower values are "less" weight, which means the item "floats" to the top of the list. A bit counter-intuitive, but the items that should appear first should have lower numbers.
draft indicates whether or not this page should be public (false) or hidden (true).
slug determines the page's URL, but this will be generated automatically so there is no need to provide it unless you wish to override the generated URL.
Other front matter metadata, such as tags, date, and author, may be used in the future, but will currently be ignored.
Content text
After the front matter, the rest of the page must be formatted as Goldmark-flavored Markdown. Markdown Guide provides a handy guide for the Markdown syntax supported by Goldmark.
Headings of levels ## Two and ### Three will populate the table of contents on the left side of each document. Headings of level two will also have a thin horizontal rule beneath them.
Internal links
To link to other pages on the site, use the ref tag surrounded by double brackets; to link to external links, use typical Markdown link syntax.
For an example using both internal and external links:
Similar to M&K's [Fieldnotes](https://fieldnotes.makingandknowing.org/), these
portfolios document the students' hands-on activities, which included
[Stucco for Molding]({{<ref "stucco-assignment" >}}), "Keeping Dry Flowers
in the Same State all Year" from the bottom of [folio 120v in BnF Ms. Fr. 640](https://edition640.makingandknowing.org/#/folios/120v/f/120v/tl),
and making and painting [cochineal lake]({{<ref "pigment-cochineal-lake_assignment" >}})
and [verdigris]({{<ref "verdigris-assignment" >}}) pigments.
Note that you do not need to give the entire path for ref tags, unless there are multiple Markdown files with the same name. You also do not need to include the .md. All of the following will work, but the first is much simpler!
[Stucco for Molding]({{<ref "stucco-assignment" >}})
[Stucco for Molding]({{<ref "activity-sheets/stucco-assignment.md" >}})
[Stucco for Molding]({{<ref "/resources/activity-sheets/stucco-assignment.md" >}})
All non-markdown media should be placed in the static/ directory. For ease of use, it is currently structured as two folders: img for images, and documents for all other media (e.g. docx, pptx, pdf).
These work differently from the other internal links. Instead of the ref tag, just use normal Markdown link or image syntax, treating static/ as the base of the URL. It is important that each URL includes a leading slash. For example:
There is a special kind of page at the root of each subfolder called _index.md. This represents the category root and can be used to list all the subpages. In RTC, we use them for three purposes:
Display the homepage (content/_index.md)
List the subpages of the "Resources" page (content/resources/_index.md) and indicate where the "Resources" page should appear in the main menu
Display content that should appear at the root of the "Activity Sheets" and "Student Projects" folders (the _index.md in each of those folders)
To achieve the RTC structure, there is a rule in place that these pages will only show a list of their subpages if:
they are not the homepage AND
they are a top-level category
In other words, only the "Resources" page currently matches that description. A developer may change this rule in the file themes/rtc/layouts/_default/list.html.
Publishing
Every time changes are pushed to the main branch, a GitHub action will execute and publish content to the gh-pages branch. Make sure not to modify or remove this branch.
Run this command to serve the site over localhost, with hot-reloading.
hugo
Run this command to build the static site and output into the public/ directory.
Theming and templates
The custom theme is based on the Edition 640 theme and is composed of Go Templates HTML and SASS-flavored CSS. It can be edited in themes/rtc/, under layouts/ for Go Templates/HTML and assets/scss/ for CSS. See Hugo documentation on templating for more information.
The text was updated successfully, but these errors were encountered:
Could potentially by modeled from M&K RTC repo? See https://github.com/cu-mkp/research-teaching-companion/blob/main/README.md, copied below. @melissabreynolds, see if this is helpful/applicable?
The Making and Knowing Project: Research and Teaching Companion
https://cu-mkp.github.io/research-teaching-companion/
Webpage content and navigation for the Making and Knowing Project's Research and Teaching Companion (RTC), built on the Hugo framework.
_index.md
pagesContributing
Content pages are stored in the
content/
directory. Each content page is a Goldmark-flavored Markdown (.md
) file. To contribute to the site content, you may edit the Markdown files directly, or add new ones. The page's URL will be determined by its location in the folder structure.Front matter
At the top of each Markdown file is metadata called "front matter", separated from the rest of the file by three dashes (
---
) on either side. The following front matter information will be used by the site:title
populates the heading/banner at the top of the page, and if the page will appear in the top navigation, this value will appear there as well.menu
indicates which, if any, menu(s) the page should appear in."main"
(the top navigation that appears on every page) and"resources"
(the buttons that appear on the homepage and the Resources page to link to the available resources).weight
determines the order of the page in a menu.draft
indicates whether or not this page should be public (false
) or hidden (true
).slug
determines the page's URL, but this will be generated automatically so there is no need to provide it unless you wish to override the generated URL.Other front matter metadata, such as
tags
,date
, andauthor
, may be used in the future, but will currently be ignored.Content text
After the front matter, the rest of the page must be formatted as Goldmark-flavored Markdown. Markdown Guide provides a handy guide for the Markdown syntax supported by Goldmark.
Headings of levels
## Two
and### Three
will populate the table of contents on the left side of each document. Headings of level two will also have a thin horizontal rule beneath them.Internal links
To link to other pages on the site, use the
ref
tag surrounded by double brackets; to link to external links, use typical Markdown link syntax.For an example using both internal and external links:
Note that you do not need to give the entire path for
ref
tags, unless there are multiple Markdown files with the same name. You also do not need to include the.md
. All of the following will work, but the first is much simpler!For more information about internal links, see the Hugo documentation on Links and Cross References.
Images, documents, and other media
All non-markdown media should be placed in the
static/
directory. For ease of use, it is currently structured as two folders:img
for images, anddocuments
for all other media (e.g.docx
,pptx
,pdf
).These work differently from the other internal links. Instead of the
ref
tag, just use normal Markdown link or image syntax, treatingstatic/
as the base of the URL. It is important that each URL includes a leading slash. For example:_index.md
pagesThere is a special kind of page at the root of each subfolder called
_index.md
. This represents the category root and can be used to list all the subpages. In RTC, we use them for three purposes:content/_index.md
)content/resources/_index.md
) and indicate where the "Resources" page should appear in the main menu_index.md
in each of those folders)To achieve the RTC structure, there is a rule in place that these pages will only show a list of their subpages if:
In other words, only the "Resources" page currently matches that description. A developer may change this rule in the file
themes/rtc/layouts/_default/list.html
.Publishing
Every time changes are pushed to the
main
branch, a GitHub action will execute and publish content to thegh-pages
branch. Make sure not to modify or remove this branch.Development
Requirements
Commands
hugo server
Run this command to serve the site over localhost, with hot-reloading.
hugo
Run this command to build the static site and output into the
public/
directory.Theming and templates
The custom theme is based on the Edition 640 theme and is composed of Go Templates HTML and SASS-flavored CSS. It can be edited in
themes/rtc/
, underlayouts/
for Go Templates/HTML andassets/scss/
for CSS. See Hugo documentation on templating for more information.The text was updated successfully, but these errors were encountered: