title | layout | css |
---|---|---|
Documentation |
page |
table {
table-layout: fixed;
}
table td,
table tr {
word-break: unset;
vertical-align: top;
}
|
Documentation for building sites with the Great Great Jekyll theme.
- Set the title of the page in
_config.yml
with thetitle
property. - By default, the site uses the Double Great pretzel logo ({% include icon/logo.svg %}) next to the title of the page in the header. To override the logo, save a new logo at
_includes/icon/logo.svg
. - To add items to the site navigation, add
header_pages
to_config.yml
. The value is an array of filenames. Example:
header_pages:
- index.html
- documentation.md
- demo/index.md
Set the layout for a Jekyll page in the frontmatter, example: layout: page
.
Layout | Description | Frontmatter |
---|---|---|
{% for layout in site.data.layouts %}`{{layout | first}}` | {{layout[1].description}} |
{% endfor %}
- Set the description of the footer in
_config.yml
using thedescription
property. - Add a link to the site's GitHub repository in
_config.yml
using thegithub
property.