aboutsummaryrefslogtreecommitdiff
path: root/theme/custom/applications.html
blob: eb0124b51e8053e9b66b0582e242dd41700bd6bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "page.html" %}

{% block after_content %}
{% for page in hidden_pages|selectattr("date")|sort(reverse=true,attribute="date") %}
{% for tag in page.tags if "application" == tag.name %}
    <h2><a href="{{ SITEURL }}/{{ page.url }}{% if not DISABLE_URL_HASH %}#{{ page.slug }}{% endif %}">{{ page.title }}</a></h2>
  <div>
    {% if summarise or page.metadata['summary'] or SUMMARY_MAX_LENGTH %}
      {% if  page.featured_image %}
        <img src="{{ page.featured_image }}">
      {% endif %}
      {{ page.summary }}
    {% endif %}
  </div>
{% endfor %}
  {% if not loop.last %}
  <hr />
  {% endif %}
{% endfor %}
{{ super() }}

{% endblock %}