14 lines
306 B
HTML
14 lines
306 B
HTML
url = "/with-components"
|
|
layout = "content"
|
|
|
|
[testArchive firstAlias]
|
|
posts-per-page = "6"
|
|
|
|
[October\Tester\Components\Archive secondAlias]
|
|
posts-per-page = "9"
|
|
==
|
|
<p>This page uses components.</p>
|
|
{% for post in secondAlias.posts %}
|
|
<h3>{{ post.title }}</h3>
|
|
<p>{{ post.content }}</p>
|
|
{% endfor %} |