-
Notifications
You must be signed in to change notification settings - Fork 131
Template Editing
Stacey’s templates uses Twig and allow a mix of standard markup types & simple dynamic variables to help create your final pages.
They end up looking something like this:
...
<h1 class="col three">
{{ page.name }}
<strong>{{ page.profession }}</strong>
</h1>
<em class="col three">{{ page.email }}</em>
<hr>
{% include 'partials/navigation.html' %}
<div id="content" class="col eight">
{% include 'partials/category_lists.html' %}
</div>
<hr>
<p class="col five">© Copyright {{ page.name }} {{ page.current_year }}</p>
...
All of the templates sit within the /templates
folder. Partial templates sit within /templates/partials
, they are used for looping through collections of objects such as the images within a folder or sets of navigation.
Read more about how partials work.
Templates are assigned to pages based off the name of the .yml file within the page’s folder. If no matches are found, stacey will look for a template named default.html
.
ie. if the
/content/2.contact-me/
folder’s.yml
file is namedcontact-page.yml
, it will look for a matching template within the/templates/
folder, finding one namedcontact-page.html
.
Templates do not need to be .html files. Stacey will recognise and serve correct content-type headers for templates with the following extensions: .html
, .json
, .xml
, .atom
, .rss
, .rdf
& .txt
If clean urls are enabled, any files (and folders) within the public folder will be served from the root of your website.
ie.
/public/docs/css/screen.css
will be accessible fromhttp://yourdomain.com/docs/css/screen.css
.
The public folder is generally where you store your css, javascript & any assets used within the templates.