996f6efb8f
Sidebar: double the standard 3rem section gap above the icon row (6rem), horizontally centered instead of left-aligned. About-me page: new .social-links--large variant via a social_links_variant template var - icons at 5rem (was 1.25rem), centered, 3rem gap from the preceding text (standard section gap, distinct from the normal 1rem paragraph gap), wider inter-icon gap to match the larger size.
33 lines
824 B
HTML
33 lines
824 B
HTML
{% extends "base.html" %}
|
|
{% block html_lang %}{{ page.lang }}{% endblock %}
|
|
|
|
{% block title %}{{ SITENAME }} - {{ page.title }}{%endblock%}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
|
|
{% import 'translations.html' as translations with context %}
|
|
{% if translations.entry_hreflang(page) %}
|
|
{{ translations.entry_hreflang(page) }}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ page.title }}</h1>
|
|
{% import 'translations.html' as translations with context %}
|
|
{{ translations.translations_for(page) }}
|
|
|
|
{{ page.content }}
|
|
|
|
{% if page.slug == 'about-me' %}
|
|
{% set social_links_variant = 'large' %}
|
|
{% include "includes/social_links.html" %}
|
|
{% endif %}
|
|
|
|
{% if page.modified %}
|
|
<p>
|
|
Last updated: {{ page.locale_modified }}
|
|
</p>
|
|
{% endif %}
|
|
{% endblock %}
|