* make changes in the blog templates * Add the inline styles to website.less I also tweaked the design a bit, added h1 for header and increased the spacing a bit. * Remove inline style and add css to less file also added some spacing to make the blogpost look good by default. * make the headings bold
19 lines
504 B
HTML
19 lines
504 B
HTML
{% extends "templates/web.html" %}
|
|
|
|
{% block title %}{{ blog_title or _("Blog") }}{% endblock %}
|
|
{% block header %}<h1>{{ blog_title or _("Blog") }}</h1>{% endblock %}
|
|
{% block hero %}{% endblock %}
|
|
|
|
{% block page_content %}
|
|
<!-- no-header -->
|
|
<!-- no-breadcrumbs -->
|
|
<div class="blog-list-content">
|
|
<div id="blog-list">
|
|
{% include "templates/includes/list/list.html" %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block script %}
|
|
<script>{% include "templates/includes/list/list.js" %}</script>
|
|
{% endblock %}
|