aboutsummaryrefslogtreecommitdiffstats
path: root/templates/template.html.j2
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2022-08-25 14:19:10 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2022-08-25 14:19:10 +0000
commit787a9421d1a61229b838dcbf17734c42172800f7 (patch)
tree014297140526a59232dbc5a23e5d89e374289a59 /templates/template.html.j2
parenta86a5fa2f075ec455aa5101acff9c3fda290294d (diff)
downloadboymoder.blog-787a9421d1a61229b838dcbf17734c42172800f7.tar.gz
boymoder.blog-787a9421d1a61229b838dcbf17734c42172800f7.zip
Renamed template files, added active for torrents
Diffstat (limited to 'templates/template.html.j2')
-rwxr-xr-xtemplates/template.html.j258
1 files changed, 58 insertions, 0 deletions
diff --git a/templates/template.html.j2 b/templates/template.html.j2
new file mode 100755
index 0000000..2fd86f9
--- /dev/null
+++ b/templates/template.html.j2
@@ -0,0 +1,58 @@
+<!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>
+ <div id="content">
+ {% block content %}
+ {% endblock %}
+ </div>
+ <footer>
+ <p>this site is <a href="/thought?id=3">javascript free</a></p>
+ <a href="https://git.eda.gay/eda.gay/file/LICENSE.html">sauce code released under gplv3</a> <a href="https://github.com/jwansek/eda.gay">alternate git link</a>
+ <p>
+ <a href="http://jigsaw.w3.org/css-validator/check/referer">
+ <img style="border:0;width:88px;height:31px"
+ src="/img/vcss-blue.gif"
+ alt="Valid CSS!" />
+ </a>
+ </p>
+ </footer>
+ </div>
+ </body>
+</html>