aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/authors.html
diff options
context:
space:
mode:
Diffstat (limited to 'crumbs/templates/authors.html')
-rwxr-xr-xcrumbs/templates/authors.html43
1 files changed, 0 insertions, 43 deletions
diff --git a/crumbs/templates/authors.html b/crumbs/templates/authors.html
deleted file mode 100755
index b490f5a..0000000
--- a/crumbs/templates/authors.html
+++ /dev/null
@@ -1,43 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}{{ NEST_AUTHORS_HEAD_TITLE }} - {{ super() }}{% endblock title %}
-{% block description %}{{ NEST_AUTHORS_HEAD_DESCRIPTION }}{% 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; ">
- {% else %}
- <div class="header-container gradient">
- {% endif %}
-{% endblock headerstyle %}
-
-{% block header %}
-<!-- TEMPLATE: AUTHORS -->
- <div class="container header-wrapper">
- <div class="row">
- <div class="col-lg-12">
- <div class="header-content">
- <h1 class="header-title text-uppercase">{{ NEST_AUTHORS_HEADER_TITLE }} AUTHORS</h1>
- <div class="header-underline"></div>
- <p class="header-subtitle header-subtitle-homepage">{{ NEST_AUTHORS_HEADER_SUBTITLE }}</p>
- </div>
- </div>
- </div>
- </div>
-{% endblock header %}
-
-{% block content %}
- <div class="archive-container">
- <div class="container content archive">
- {% for author, articles in authors|sort %}
- <h2><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</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>
- {% endfor %}
- </div>
- </div>
-{% endblock content %} \ No newline at end of file