14 lines
500 B
Plaintext
14 lines
500 B
Plaintext
<section id="{{ subpage.data.title | slug }}" class="{{ subpage.data.classes }} wrapper-full">
|
|
{% if subpage.data.img %}
|
|
<img src="{{subpage.data.img.src}}" alt="{{subpage.data.img.alt}}">
|
|
{% endif %}
|
|
{% if subpage.data.showTitle != false %}
|
|
<h2>{{ subpage.data.title }}</h2>
|
|
{% endif %}
|
|
{{ subpage.templateContent }}
|
|
{% if subpage.data.socials %}
|
|
{% if subpage.data.socials.github %}
|
|
{% include "partials/icons/github.html" %}
|
|
{% endif %}
|
|
{% endif %}
|
|
</section> |