pages/_layouts/about.html
2015-10-22 14:59:20 -04:00

19 lines
371 B
HTML

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