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

{% block title %}{{ blog.title }}{% endblock %}


投稿日 {{ blog.created_at }} >> 更新日 {{ blog.updated_at }}
{{ blog.text | markdown_to_html }}
{% if blog.thumbnail %} ... {% elif blog.category.thumbnail %} ... {% endif %}
{{ blog.get_toc | markdown_to_html }}
{% for articl in new_articls %}

{{ articl.title }}

{% endfor %}
{% endblock %}