d6605146ac
Replace sample pages with hard coded HTML and Liquid in favor of a layout that does all the heavy lifting. Assign the appropriate `layout` via YAML Front Matter and away you go.
9 lines
230 B
HTML
9 lines
230 B
HTML
---
|
|
layout: archive
|
|
---
|
|
|
|
{{ content }}
|
|
|
|
<div class="entries-{{ page.entries_layout | default: 'list' }}">
|
|
{% include documents-collection.html collection=page.collection sort_by=page.sort_by sort_order=page.sort_order %}
|
|
</div>
|