Based off the initial Wordpress redesign visible here (repo: https://github.com/museum-of-vertebrate-zoology/wp-arctos-theme )
View this at https://handbook.arctosdb.org
Save them as .markdown
files. On GitHub pages, they may not render correctly with a different extension.
Different types of writeups are organized into Jekyll collections, kept in files that begin with YAML Front matter, like this sample file.
Placing the files into the appropriate directory will automatically sort them. They will not be listed if the title
attribute contains the string "index".
The collection directories are:
_documentation
_how_to
To create a collection, do the following:
- Create a directory with a leading underscore and the name of the collection, replacing spaces with
_
. For example, My Awesome Collection becomes the directory_my_awesome_collection
. - In
./_config.yml
, under thecollections
item, add
my_awesome_collection:
output: true
- Create an
index.html
file for your new collection, and in the front matter, give it the layoutcollection_index
.