19 lines
436 B
HTML
19 lines
436 B
HTML
---
|
|
layout: page
|
|
---
|
|
|
|
{% if page.profile %}
|
|
<div class="profile col one {{ page.profile.align }}">
|
|
{% if page.profile.image %}
|
|
<img class="one" src="{{ page.profile.image | prepend: '/assets/img/' | prepend: site.baseurl | prepend: site.url }}">
|
|
{% endif %}
|
|
{% if page.profile.address %}
|
|
<div class="address">
|
|
{{ page.profile.address }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{{ content }}
|