{% extends "base.html" %} {% block content %}
{% if home.profilePic %} Profile picture {% endif %} {% if home.name %}

{{ home.name }}

{% endif %} {% if home.bio %}

{{ home.bio }}

{% endif %} {% if home.socials %}
{% for social in home.socials %} {% endfor %}
{% endif %} {% if home.cards %}
{% for card in home.cards %} {{ card.title }} {% endfor %}
{% endif %} {% for lang, posts in posts_by_language.items() %} {% set lang_posts = posts[:config.recentPosts] %} {% if lang_posts %}

{% if lang == languages.default %}Recent Posts{% else %}Recent Posts ({{ lang | upper }}){% endif %}

{% if lang == languages.default %} View all posts → {% else %} View all posts ({{ lang }}) → {% endif %}
{% endif %} {% endfor %}
{% endblock %}