File: archive.html

package info (click to toggle)
staticsite 2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 14,648 kB
  • sloc: javascript: 33,722; python: 9,851; makefile: 46; sh: 4
file content (23 lines) | stat: -rw-r--r-- 428 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "base.html" %}

{% block content %}
<h1 class="display-4">{{page.meta.title}}</h1>

{% import 'lib/blog.html' as blog with context %}

<div class="container-fluid">
  <div class="row">
    <div class="col-lg-9">
    {{blog.archive()}}
    </div>
    <div class="col-sm-3">
      {{blog.main_link()}}

      {{blog.top_tags(limit=15)}}

      {{blog.recent_series(limit=5)}}
    </div>
  </div>
</div>

{% endblock %}