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 %}
All {{ category }}
{% 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">
<h1 class="section-heading">About Me</h1>
<hr class="light">
</div>
</div>
</div>
</section>
<section class="no-padding" id="projects">
<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-13 21:52:59 +01:00
{{ article.summary|striptags|e }}
2016-05-27 23:19:03 +01:00
</div>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
</div>
</section>
{% endblock %}