pages/_layouts/about.html

19 lines
378 B
HTML

---
layout: page
---
{% if page.profile %}
<div class="profile col one {{ page.profile.align }}">
{% if page.profile.image %}
<img class="one" src="/assets/img/{{ page.profile.image }}">
{% endif %}
{% if page.profile.address %}
<div class="address">
{{ page.profile.address }}
</div>
{% endif %}
</div>
{% endif %}
{{ content }}