Skip to content

Latest commit

 

History

History
50 lines (42 loc) · 1.51 KB

archive.md

File metadata and controls

50 lines (42 loc) · 1.51 KB
layout title permalink hide_post
page
All Posts
/archive/
true

{% for project in site.pubs %}

{% if project.image %} {% endif %}
<h3><a href="{{ project.url }}">{{ project.title }}</a></h3>
<p>{{ project.description | markdownify }}</p>
{% endfor %}

{% for person in site.people %}

{% if person.image %} {% endif %}
<h3><a href="{{ person.url }}">{{ person.name }}</a></h3>
<p>{{ person.description | markdownify }}</p>
{% endfor %}

{% for post in site.posts %}

{% if person.image %} {% endif %}
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p>{{ post.description }}</p>
{% endfor %}

{% for code in site.codes %}

{% if code.image %} {% endif %}
<h3><a href="{{ code.url }}">{{ code.title }}</a></h3>
<p>{{ code.description }}</p>
{% endfor %}