11ty-resume/src/_includes/page.liquid
2024-02-04 22:50:28 +01:00

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>