mirror of
https://github.com/torproject/newsletter.git
synced 2024-11-27 03:10:28 +00:00
39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
{% from "macros/archive.html" import render_intro_post %}
|
|
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="{{ '/static/css/bootstrap.css'|asseturl }}">
|
|
<link rel="stylesheet" href="{{ '/static/fonts/fontawesome/css/all.min.css'|asseturl }}" rel="stylesheet">
|
|
<title>{% block title %}{{ this.title }}{% endblock %}</title>
|
|
<body class="no-gutters" data-spy="scroll" data-target="#sidenav-topics" id="topics" data-children=".item">
|
|
<header>
|
|
{% include 'navbar.html' %}
|
|
</header>
|
|
<div class="page bg-light">
|
|
<div class="container-fluid">
|
|
<div class="row flex-xl-nowrap">
|
|
<main role="main" class="col-sm-12 col-xs-12 ml-sm-auto col-md-9 col-lg-9 mx-auto m-5">
|
|
{% block body %}{% endblock %}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="page">
|
|
<div class="container-fluid">
|
|
<div class="row flex-xl-nowrap">
|
|
<div class="col-sm-12 col-xs-12 ml-sm-auto col-md-9 col-lg-9 mx-auto m-5">
|
|
<h2 class="text-primary">Archive</h2>
|
|
<div class="col-12">
|
|
<div class="row mt-4 mb-2">
|
|
{% for post in site.query('/archive') %}
|
|
{{ render_intro_post(post, from_index=true) }}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% include 'footer.html' %}
|
|
</body>
|