braziw-plugin-blog
Version:
Blog plugin for Braziw CMS
27 lines (15 loc) • 396 B
HTML
{% extends _cms.conf.adminTemplate %}
{% block title %}Blogs{% endblock %}
{% block head %}
{% endblock %}
{% block content %}
<h1>All Posts</h1>
{%if _user and _user.role == 'EDITOR'%}
<div class="panel callout">
You are an editor, you will be able to see posts by other and edit them as needed.
</div>
{%endif%}
{{table|safe}}
{% endblock %}
{% block beforeEndBody %}
{% endblock %}