{% extends 'base.html' %} {% load static %} {% block blogs-style %} {% endblock blogs-style %} {% block content %}
Generic placeholder image

{% block title %}Blog{% endblock %}

Blog top {% for category in category_list %} {{ category }} {% endfor %}

{% if request.user.is_superuser %} 非公開 {% endif %} {% if blogs.cunt != 0 %}

投稿{{ blogs.count }}

{% endif %} {% if messages %} {% endif %} {% for blog in blogs %}
{% if blog.category.thumbnail.bool %}

Generic placeholder image

{% endif %}

{{ blog.created_at }} - {{ blog.category.title }} {% if request.user.is_superuser %} 非公開 {% endif %}

{{ blog.title }}

{{ blog.text | truncatechars:'100' | striptags }}

{% endfor %} {% include 'blogs/page.html' %}
{% endblock %}