27 lines
455 B
HTML
Executable File
27 lines
455 B
HTML
Executable File
---
|
|
layout: default
|
|
---
|
|
|
|
{% include site-header.html %}
|
|
|
|
<main class="main container">
|
|
|
|
<div class="content">
|
|
|
|
<article class="article article--page typeset">
|
|
|
|
{% assign collectiondata = site.collections | where: "label", page.collectionpage | first %}
|
|
<h1>{{ collectiondata.title }}</h1>
|
|
|
|
{{ collectiondata.description | markdownify }}
|
|
|
|
</article>
|
|
|
|
{% include post-list.html %}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
{% include site-footer.html %}
|