{% extends "_base.html" %} {% block page %}homepage{% endblock page%} {% block lang %}{% if section.extra.lang %}{{ section.extra.lang }}{% else %}{{ section.lang }}{% endif %}{% endblock lang %} {% block title %}{{ config.title }}{% endblock title %} {% block desc %} {% endblock desc %} {% block head %} {% if config.markdown.highlight_theme == "css" %} {% if config.extra.force_theme == "dark" %} {% else %} {% endif %} {% endif %} {% if section.extra.math %} {% endif %} {% endblock head %} {% block content %}
{% if section.extra.avatar %} avatar {% endif %}
{{ section.extra.name }} {% if section.extra.id %} @{{ section.extra.id }} {% endif %}
{% if section.extra.bio %}
{{ section.extra.bio }}
{% endif %}
{{ section.content | trim | safe }}
{% if section.extra.recent %} {% set blog_section_path = config.extra.blog_section_path | trim_start_matches(pat="/") %} {% set section_md_path = blog_section_path ~ "/_index.md" %} {% set blog_section = get_section(path=section_md_path) %}
{% for post in blog_section.pages | slice(end=section.extra.recent_max) %} {{ post.title }} {{ post.date | date(format=section.extra.date_format) }} {% endfor %}
{% endif %}
{% if section.extra.footer %} {% include "_footer.html" %} {% endif %}
{% endblock content %} {% block script %} {% if section.extra.mermaid %} {% endif %} {% endblock script %}