Templates
Similar to a layout, a template includes HTML and Liquid structure that surrounds your content. While most websites will only have one layout, they will have many templates. Each theme must include template files for pages, forms and each module associated within a website.
Example entries_by_archive.liquid template file:
<h2>{{ archive.title }} Entries</h2>
{% for entry in entries %}
<h3>{{ entry.title | link_to: entry.url }}</h3>
{{ entry.body }}
{% endfor %}