{% extends 'base.html' %} {% block title %} Stuff I follow {% endblock %} {% block head %} {% endblock %} {% block content %} {% for title in titles %} {% set title_url = url_for('title_view', site=title['site'], title_id=title['id']) %}
{{ title['name'] }}
{% for ch in title['chapters'][:6] %} Chapter {{ ch['num_major'] }}{% if ch['num_minor'] %}.{{ ch['num_minor'] }}{% endif %} {% if ch['volume'] %}Volume {{ ch['volume'] }} {% endif %} {% if ch['name'] %} - {{ ch['name'] }}{% endif %} {% for group in ch['groups'] %} {{ group | truncate(20) }} {% endfor %} {% endfor %} {% if title['chapters']|length > 6 %} and more... {% endif %}
{% endfor %} {% endblock %}