blob: 00a7cea85ad7efa72ee51cc90f6a4f35e4d4e509 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
<!doctype html>
<html lang="en">
<head>
<meta name="abuseipdb-verification" content="3IuG6dik" />
<link rel='stylesheet' href="{{url_for('static', filename='style.css')}}">
<link rel="shortcut icon" href="/img/greenboi.jpg?h=16&w=16">
<title>eda.gay :: {{title}}</title>
</head>
<body>
<div id=wrapper>
<header>
<div id="externallinks">
<nav>
<ul>
{% for name, link in links %}
<li>
<a href="{{link}}">{{name}}</a>
</li>
{% endfor %}
</ul>
</nav>
</div>
<div id=headerflex>
<div id=headers>
<a href="/" id=TheTitle><h1>{{title}}</h1></a>
<nav id=articles>
<ul>
{% for name, link in articles %}
<li>
<a href="{{link}}">{{name}}</a>
</li>
{% endfor %}
</ul>
</nav>
</div>
<a href="/">
<img alt="{{image[0]}}" src="{{image[1]}}">
</a>
</div>
</header>
<!-- yes, this is stupid asf, using another template would be better (i cant get that to work) -->
{% if thought %}
<aside>
<h4>{{dt}}</h4>
<h5>this category:</h5>
<ul>
<li><b><a href="{{'/thoughts#'+category.replace(' ', '_')}}">{{category}}</a></b></li>
</ul>
<h5>related thoughts:</h5>
<ul>
{% for id_, title, dt, category in related %}
<li><a href="{{'/thought?id=%i' % id_}}">{{title}}</a></li>
{% endfor %}
</ul>
<h5>other categories:</h5>
{% for category_name in othercategories %}
<ul>
<li><a href="{{'/thoughts#'+category_name.replace(' ', '_')}}">{{category_name}}</a></li>
</ul>
{% endfor %}
</aside>
{% endif %}
<div id="content">
{% block content %}
{% endblock %}
</div>
<footer>
<p>this site is <a href="/thought?id=3">javascript free</a></p>
<a href="https://github.com/jwansek/edaweb">sauce code released under gplv3</a>
<p>
<a href="http://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
alt="Valid CSS!" />
</a>
</p>
<a href="https://www.abuseipdb.com/user/55019" title="AbuseIPDB is an IP address blacklist for webmasters and sysadmins to report IP addresses engaging in abusive behavior on their networks">
<img src="https://www.abuseipdb.com/contributor/55019.svg" style="width: 201px;" alt="AbuseIPDB Contributor Badge">
</a>
</footer>
</div>
</body>
</html>
|