File: category.html

package info (click to toggle)
python-hypothesis 6.150.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,760 kB
  • sloc: python: 64,665; ruby: 1,107; sh: 270; makefile: 43; javascript: 6
file content (17 lines) | stat: -rw-r--r-- 358 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}

{% block content %}

<div class="articles-page">
  <div class="articles-page__header">
    <div class="articles-page__title">{{ category.name|capitalize }}</div>
  </div>

  <div class="articles-grid">
    {% for article in articles %}
    {% include "article-card.html" %}
    {% endfor %}
  </div>
</div>

{% endblock content %}