4f29c8a97d
Small monochrome icon row (GitHub, LinkedIn, ORCID, Mastodon, Bluesky, Matrix) rendered from a SOCIAL config tuple via a shared Jinja partial (templates/includes/social_links.html), included unconditionally in the sidebar below the tag cloud and again on the About-me page only. Icons are inline SVGs (templates/icons/*.svg) using fill=currentColor, so they track the existing accent-color/dark-mode toggle for free via --main-link-color, no JS needed.
32 lines
779 B
HTML
32 lines
779 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' %}
|
|
{% include "includes/social_links.html" %}
|
|
{% endif %}
|
|
|
|
{% if page.modified %}
|
|
<p>
|
|
Last updated: {{ page.locale_modified }}
|
|
</p>
|
|
{% endif %}
|
|
{% endblock %}
|