{% 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 %} {% if content %}
{{ content | safe }}
{% endif %} {% for name, coll in collections.items() %} {% set recent = coll.posts[:config.recentPosts] %} {% if recent %}

{{ coll.title }}

View all →
{% endif %} {% endfor %}
{% endblock %}