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.
10 lines
No EOL
172 B
HTML
10 lines
No EOL
172 B
HTML
---
|
|
layout: archive
|
|
title: "Recipes"
|
|
permalink: /recipes-archive/
|
|
author_profile: false
|
|
---
|
|
|
|
{% for post in site.recipes %}
|
|
{% include archive-single.html %}
|
|
{% endfor %} |