funky/_layouts/home.html
Michael Lynch 863954c90e Disabling execute permission on all files
Many files in the repo have the UNIX executable permission bit set, which indicates to the OS that these are executable binaries. None of these files are executable, so they should not have the executable permission bit set.
2019-03-03 16:07:41 -05:00

27 lines
455 B
HTML

---
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 %}