{% extends "base.html" %} {% block title %}StarPunk - Home{% endblock %} {% block content %}

{{ config.SITE_NAME or 'Recent Notes' }}

{# Feed-level author h-card (per Q24) #} {% if author %} {% endif %} {% if notes %} {% for note in notes %}
{# Detect if note has explicit title (starts with # heading) - per Q22 #} {% set has_explicit_title = note.content.strip().startswith('#') %} {# p-name only if note has explicit title (per Q22) #} {% if has_explicit_title %}

{{ note.title }}

{% endif %} {# e-content: note content (preview) #}
{{ note.html[:300]|safe }}{% if note.html|length > 300 %}...{% endif %}
{% endfor %} {% else %}

No notes published yet. Check back soon!

{% endif %}
{% endblock %}