{% extends "base.html" %}
{% block title %}Blog โ {{ site.title }}{% endblock %}
{% block content %}
{% for post in posts %}
{{ post.title }}
{{ post.content_html | safe }}
{% if post.truncated %}
read more
{% endif %}
{% if post.tags %}
{% for tag in post.tags %}
{{ tag }}
{% endfor %}
{% endif %}
{% endfor %}
{{ posts | length }} journal entries
{% endblock %}
optica/templates/blog.html
ฯ 0.0%