1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/theme/templates/category.html

47 lines
1.2 KiB
HTML
Raw Normal View History

2016-05-27 23:19:03 +01:00
{% extends "base.html" %}
{% block htmltitle %}
2016-06-14 13:32:24 +01:00
{{ category|title }}
2016-05-27 23:19:03 +01:00
{% endblock %}
2016-06-12 11:34:20 +01:00
{% block metadata %}
{% for tag, value in page.ogtags %}
<meta property="{{ tag }}" content="{{ value|striptags|e }}" />
{% endfor %}
{% endblock %}
2016-05-27 23:19:03 +01:00
{% block content %}
<section class="bg-primary">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
2016-06-14 13:32:24 +01:00
<h1 class="section-heading">{{ category|title }}</h1>
2016-05-27 23:19:03 +01:00
<hr class="light">
</div>
</div>
</div>
</section>
2016-06-14 13:32:24 +01:00
<section class="no-padding">
2016-05-27 23:19:03 +01:00
<div class="container-fluid">
<div class="row no-gutter">
{% for article in dates %}
<div class="col-lg-4 col-sm-6">
<a href="#" class="portfolio-box">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category">
{{ article.title }}
</div>
<div class="project-name">
2016-06-14 13:32:24 +01:00
{{ article.title }}
2016-05-27 23:19:03 +01:00
</div>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
</div>
</section>
{% endblock %}