aboutsummaryrefslogtreecommitdiffstats
path: root/aboutwilson/templates/tags.html
blob: dc6da9590a572215e153252824b6d4ce1d4ed057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{% extends "base.html" %}
{% block description %}The Tags page lists all tags used to classify the posts. Each post has at least one tag helping readers find out easily what they are looking for.{% endblock %}
{% block title %}Tags — {{ SITENAME }}{% endblock %}
{% block head %}
<style type="text/css" media="screen">
ul.tagcloud {
	list-style: none;
	padding: 0;
	padding-top: 7em;
	padding-bottom: 7em;
	width: 50%;
	margin-left: 25%;
}

ul.tagcloud li {
	display: inline-block;
}

li.tag-1 {
	font-size: 150%;
}

li.tag-2 {
	font-size: 120%;
}

li.tag-3 {
	font-size: 100%;
}

li.tag-4 {
	font-size: 80%;
}
</style>
{% endblock %}
{% block content %}
<h1>Tags</h1>
<div class="text-center">
<ul class="tagcloud">
	{% for tag in tag_cloud %}
	<li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0 }}</a></li>
	{% endfor %}
</ul>
</div>
{% endblock %}