{% extends 'base.html' %} {% block content %}
{% if g.is_login and (g.user_info.mb_id == post.mb_id or g.user_info.mb_id in ['admin', 'wixon']) %}
수정 삭제
{% endif %}

[{{ post.category }}] {{ post.title }}

Posted on {{ post.add_date }}

{{ post.contents | safe }}
{% if prev_post is not none %} {% endif %} {% if next_post is not none %} {% endif %}
이전 {{ prev_post.title }}
다음
{{ next_post.title }}
목록
{% endblock %}