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

Recent Notes

{% if notes %} {% for note in notes %}
{{ note.html[:300]|safe }}{% if note.html|length > 300 %}...{% endif %}
{% endfor %} {% else %}

No notes published yet. Check back soon!

{% endif %}
{% endblock %}