28 lines
524 B
HTML
28 lines
524 B
HTML
{% block title %}{{ blog_title or "Blog" }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<!-- no-header -->
|
|
<!-- no-breadcrumbs -->
|
|
{% if blog_subtitle %}
|
|
<div class="list-hero">
|
|
<h1>
|
|
{{ blog_subtitle }}
|
|
</h1>
|
|
</div>
|
|
{% endif %}
|
|
<div class="blog-list-content">
|
|
<div id="blog-list">
|
|
{% include "templates/includes/list/list.html" %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block script %}{% include "templates/includes/list/list.js" %}{% endblock %}
|
|
|
|
{% block style %}
|
|
<style>
|
|
.page-content {
|
|
padding: 0px;
|
|
}
|
|
</style>
|
|
{% endblock %}
|