8 lines
218 B
HTML
8 lines
218 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
<h2>{{ _("BlogPosts") }}</h2>
|
|
<a href="{{ url_for('create_blog_post') }}">{{ _("Create") }}</a>
|
|
<br>
|
|
{% include "blog_post/_table.html" %}
|
|
{% endblock %} |