53 lines
1.4 KiB
HTML
53 lines
1.4 KiB
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="post">
|
|
|
|
<header class="post-header">
|
|
{% assign name = site.title | split: ' ' %}
|
|
{% assign firstname = name | first %}
|
|
{% if name.size > 2 %}
|
|
{% assign middlenames = name | slice:1, name.size-1 | join:" " %}
|
|
{% else %}
|
|
{% assign middlenames = '' %}
|
|
{% endif %}
|
|
{% assign lastname = name | last %}
|
|
<a class="navbar-brand title font-weight-lighter" href="{{ site.baseurl | prepend: site.url }}/">
|
|
<span class="font-weight-bold">{{ firstname }}</span> {{ middlenames }} {{ lastname }}
|
|
</a>
|
|
</header>
|
|
|
|
<article>
|
|
<div class="row">
|
|
<div class="col">
|
|
{{ content }}
|
|
</div>
|
|
{% if page.profile %}
|
|
<div class="profile col-4 {% if page.profile.align == 'left' %}order-first{% endif %}">
|
|
{% if page.profile.image %}
|
|
<img class="img-fluid z-depth-1 rounded" src="{{ page.profile.image | prepend: '/assets/img/' | relative_url }}">
|
|
{% endif %}
|
|
{% if page.profile.address %}
|
|
<div class="address">
|
|
{{ page.profile.address }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% if page.news %}
|
|
{% include news.html %}
|
|
{% endif %}
|
|
|
|
{% if page.social %}
|
|
<div class="social">
|
|
{% include social.html %}
|
|
<div class="contact-note">{{ site.contact_note }}</div>
|
|
</div>
|
|
{% endif %}
|
|
</article>
|
|
|
|
</div>
|