sito-hackit-16/themes/nest/templates/category.html
2016-03-05 17:56:04 +01:00

40 lines
1.7 KiB
HTML

{% extends "base.html" %}
{% block title %}{{ NEST_CATEGORY_HEAD_TITLE }} {{ category|capitalize }} - {{ super() }}{% endblock title %}
{% block description %}{{ NEST_CATEGORY_HEAD_DESCRIPTION }} {{ category|capitalize }}{% endblock description %}
{% block headerstyle %}
{% if NEST_HEADER_IMAGES %}
<div class="header-container" style="background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('{{ SITEURL }}/images/{{ NEST_HEADER_IMAGES }}'); background-position: center; background-size: cover;">
{% else %}
<div class="header-container gradient">
{% endif %}
{% endblock headerstyle %}
{% block header %}
<div class="container header-wrapper">
<div class="row">
<div class="col-lg-12">
<div class="header-content">
<h1 class="header-title text-uppercase">{{ NEST_CATEGORY_HEADER_TITLE }} : {{ category|capitalize }}</h1>
<div class="header-underline"></div>
<p class="header-subtitle header-subtitle-homepage">{{ NEST_CATEGORY_HEADER_SUBTITLE }} "{{ category|capitalize }}"</p>
</div>
</div>
</div>
</div>
{% endblock header %}
{% block content %}
<div class="archive-container">
<div class="container content archive">
<h2><a href="{{ SITEURL }}/{{ category.url }}">{{ category|capitalize }}</a></h2>
<dl class="dl-horizontal">
{% for article in articles %}
<dt>{{ article.locale_date}}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
</div>
</div>
{% endblock content %}