2023-10-16 01:36:59 +02:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
<article {% if page.feature-img %}class="feature-image"{% endif %}>
|
2024-03-27 04:13:48 +01:00
|
|
|
<header id="main" style="background-image: url('{{ page.feature-img | relative_url }}')">
|
|
|
|
<div class="title-padder">
|
|
|
|
{% if page.hide_title %}
|
|
|
|
<div class="feature-image-padding"></div>
|
|
|
|
{% else %}
|
|
|
|
<h1 id="{{ page.title | default: "" | cgi_escape }}" class="title"> {{ page.title }}</h1>
|
|
|
|
{% if page.subtitle %}
|
|
|
|
<h2 class="subtitle">{{ page.subtitle }}</h2>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<section class="post-content">
|
|
|
|
{% if page.bootstrap %}
|
|
|
|
<div class="bootstrap-iso">
|
|
|
|
{% endif %}
|
|
|
|
{{ content }}
|
|
|
|
{% if page.bootstrap %}
|
|
|
|
</div>
|
2023-10-16 01:36:59 +02:00
|
|
|
{% endif %}
|
2024-03-27 04:13:48 +01:00
|
|
|
</section>
|
|
|
|
<!-- Tag list for portfolio -->
|
|
|
|
{% capture tag_list %}{{ page.tags | join: "|" }}{% endcapture %}
|
|
|
|
{% capture _tags %}{% include default/tags_list.liquid tags=tag_list %}{% endcapture %}
|
|
|
|
{{ _tags | split: " " | join: " " }}
|
2023-10-16 01:36:59 +02:00
|
|
|
</article>
|