layout: page
{% if site.mugshot %} <figure class=“mugshot-figure”>
<img src="{{ site.mugshot | relative_url }}" class="mugshot-img">
</figure> {% endif %}
{{ content }}
{% if site.posts.size > 0 %} <div class=“post-list”>
<h2>Writings</h2> <ul class="post-list"> {% for post in site.posts %} <li> <a class="post-link" href="{{ post.url | relative_url }}"> {{ post.title | escape }} </a> </li> {% endfor %} </ul>
</div> {% endif %}