summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2021-11-24 08:24:10 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2021-11-24 08:24:10 +1300
commit03ea6ba48bfbb25dc74a0a369b5aa15bf10e91b9 (patch)
treef37ee253eeb9fd5345480f68d6aa6b72894223a4
parent61c0c3795c2a6684c6917a79da7911de7a9c346a (diff)
Fixed spacing issues
-rw-r--r--project/templates/about.html14
-rw-r--r--project/templates/adapad.html10
-rw-r--r--project/templates/base.html8
-rw-r--r--project/templates/base_math.html8
-rw-r--r--project/templates/deckconv.html10
-rw-r--r--project/templates/fltkada.html10
-rw-r--r--project/templates/grasp.html10
-rw-r--r--project/templates/index.html14
-rw-r--r--project/templates/integral.html14
-rw-r--r--project/templates/links.html14
-rw-r--r--project/templates/packrat.html12
-rw-r--r--project/templates/sokoban.html10
-rw-r--r--project/templates/steelman.html14
-rw-r--r--project/templates/stvcount.html14
-rw-r--r--project/templates/sunset.html10
-rw-r--r--project/templates/sydneyrail.html10
-rw-r--r--project/templates/tags.html14
-rw-r--r--project/templates/tags/application.html14
-rw-r--r--project/templates/tags/binding.html14
-rw-r--r--project/templates/tags/compsci.html14
-rw-r--r--project/templates/tags/copyright.html14
-rw-r--r--project/templates/tags/esoteric.html14
-rw-r--r--project/templates/tags/language.html14
-rw-r--r--project/templates/tags/legal.html14
-rw-r--r--project/templates/tags/library.html14
-rw-r--r--project/templates/tags/maps.html14
-rw-r--r--project/templates/tags/mathematics.html14
-rw-r--r--project/templates/tags/politics.html14
-rw-r--r--project/templates/tags/programming.html14
-rw-r--r--project/templates/tags/transport.html14
-rw-r--r--project/templates/tags/videogames.html14
-rw-r--r--project/templates/thue2a.html10
32 files changed, 170 insertions, 232 deletions
diff --git a/project/templates/about.html b/project/templates/about.html
index bd2f3e9..723c530 100644
--- a/project/templates/about.html
+++ b/project/templates/about.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}About{% endblock %}
+{%- block title -%}About{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/about.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>About Me</h4>
<p>Does the massive gap between what is known and what is mainstream bother anyone else? It bothers
@@ -68,7 +67,6 @@ your browser cannot handle those standards, tough. Get a better web browser.</p>
<p>This website will never require any form of Javascript for optimal viewing. The use of
Turing-complete client side scripting in web browsers is an abomination.</p>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/adapad.html b/project/templates/adapad.html
index 2592e1b..9982aca 100644
--- a/project/templates/adapad.html
+++ b/project/templates/adapad.html
@@ -1,14 +1,13 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Adapad{% endblock %}
+{%- block title -%}Adapad{%- endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Adapad</h4>
<p>Git repository: <a href="/cgi-bin/cgit.cgi/adapad">Link</a></p>
@@ -59,7 +58,6 @@ end user perspective.</p>
<p>The FLTK/Ada binding currently occupies the same repository as Adapad, but will be moved to its
own as work progresses.</p>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/base.html b/project/templates/base.html
index a682b86..7282f57 100644
--- a/project/templates/base.html
+++ b/project/templates/base.html
@@ -8,8 +8,8 @@
<title>{% block title %}{% endblock %}</title>
<link href="/favicon.ico" rel="icon" type="image/x-icon" />
<link href="/css/default.css" rel="stylesheet" />
- {% block style %}
- {% endblock %}
+{%- block style -%}
+{%- endblock -%}
</head>
<body>
<div class="white">
@@ -26,8 +26,8 @@
</div>
<hr />
<div class="article">
- {% block content %}
- {% endblock %}
+{% block content -%}
+{%- endblock %}
</div>
<hr />
</div>
diff --git a/project/templates/base_math.html b/project/templates/base_math.html
index bb1e6e5..025968c 100644
--- a/project/templates/base_math.html
+++ b/project/templates/base_math.html
@@ -8,8 +8,8 @@
<title>{% block title %}{% endblock %}</title>
<link href="/favicon.ico" rel="icon" type="image/x-icon" />
<link href="/css/default.css" rel="stylesheet" />
- {% block style %}
- {% endblock %}
+{%- block style -%}
+{%- endblock -%}
</head>
<body>
<div class="white">
@@ -26,8 +26,8 @@
</div>
<hr />
<div class="article">
- {% block content %}
- {% endblock %}
+{% block content -%}
+{%- endblock %}
</div>
<hr />
</div>
diff --git a/project/templates/deckconv.html b/project/templates/deckconv.html
index 91b12d9..4103518 100644
--- a/project/templates/deckconv.html
+++ b/project/templates/deckconv.html
@@ -1,14 +1,13 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Flashcard Deck Converter{% endblock %}
+{%- block title -%}Flashcard Deck Converter{%- endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Flashcard Deck Converter</h4>
<p>Git repository: <a href="/cgi-bin/cgit.cgi/fresh-deck">Link</a></p>
@@ -61,7 +60,6 @@ note there are quite a few dependencies involved. This is due to Anki's aforemen
deck format. Digging down through layers of JSON inside an SQLite database inside a zipfile is a
little bothersome. Dealing with Fresh Memory's current XML based deck format is a walk in the park
by comparison, even if it is more unwieldy due to any deck with media not being all one file.</p>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/fltkada.html b/project/templates/fltkada.html
index a1c8bf4..8bb477f 100644
--- a/project/templates/fltkada.html
+++ b/project/templates/fltkada.html
@@ -1,14 +1,13 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}FLTK Ada{% endblock %}
+{%- block title -%}FLTK Ada{%- endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>FLTK Ada Binding</h4>
<p>Git repository: <a href="/cgi-bin/cgit.cgi/fltkada">Link</a><br />
@@ -108,7 +107,6 @@ internals is handled automatically.</p>
group rather than implicitly being added to the last group not yet ended. At the moment the package
specifications should provide sufficient information to allow programmers to work with the library.
</p>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/grasp.html b/project/templates/grasp.html
index 6abdb5a..a213c02 100644
--- a/project/templates/grasp.html
+++ b/project/templates/grasp.html
@@ -1,14 +1,13 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Grasp Interpreter{% endblock %}
+{%- block title -%}Grasp Interpreter{%- endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Grasp Interpreter</h4>
<p>Git repository: <a href="/cgi-bin/cgit.cgi/esoteric">Link</a></p>
@@ -72,7 +71,6 @@ digraph {
<p>If a format that more readily converts to a comprehensible graph image is found, a parser for it
may be added.</p>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/index.html b/project/templates/index.html
index 2e81d90..c0a1ed7 100644
--- a/project/templates/index.html
+++ b/project/templates/index.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Jedidiah Barber's Personal Site{% endblock %}
+{%- block title -%}Jedidiah Barber's Personal Site{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<ul class="index">
{%- for item in articles -%}
{%- if item.updated -%}{%- set postclass = "update" -%}{%- else -%}{%- set postclass = "post" -%}{%- endif -%}
@@ -24,7 +23,6 @@
<span class="{{ postclass }}">({{ postverb }} {{ item.postdate }})</span></li>
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/integral.html b/project/templates/integral.html
index 1c9d175..364fe84 100644
--- a/project/templates/integral.html
+++ b/project/templates/integral.html
@@ -1,20 +1,19 @@
-{% extends "base_math.html" %}
+{%- extends "base_math.html" -%}
-{% block title %}Area Under the Curve of a Complex Integral{% endblock %}
+{%- block title -%}Area Under the Curve of a Complex Integral{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/integral.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Area Under the Curve of a Complex Integral</h4>
<p>Scripts used to generate graphs: <a href="/dld/integral_scripts.zip">Link</a></p>
@@ -237,7 +236,6 @@ sum and so won't be considered here.</p>
<p>The next interesting question is how this relates to the surface area of a
<a href="https://www.mathcurve.com/surfaces.gb/helicoiddroit/helicoiddroit.shtml" class="external">
right helicoid</a>.</p>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/links.html b/project/templates/links.html
index c7640f5..3b4d4bf 100644
--- a/project/templates/links.html
+++ b/project/templates/links.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Links{% endblock %}
+{%- block title -%}Links{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/links.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Links</h4>
<p>These are some of the websites that found their way into my bookmarks over the years. Quite a
@@ -387,7 +386,6 @@ prefer to discover these things for myself.</p>
</div>
</div>
</div>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/packrat.html b/project/templates/packrat.html
index ec516d3..4ae1c3e 100644
--- a/project/templates/packrat.html
+++ b/project/templates/packrat.html
@@ -1,15 +1,13 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Packrat Parser Combinator Library{% endblock %}
+{%- block title -%}Packrat Parser Combinator Library{%- endblock -%}
-{% block content %}
-
-
+{%- block content %}
<h4>Packrat Parser Combinator Library</h4>
<p>Git repository: <a href="/cgi-bin/cgit.cgi/packrat">Link</a><br />
@@ -165,7 +163,5 @@ to explore.</p>
<p>Finally, the plan is to actually use this library for something significant at some point in the
future.</p>
-
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/sokoban.html b/project/templates/sokoban.html
index d5bcb63..c3f9238 100644
--- a/project/templates/sokoban.html
+++ b/project/templates/sokoban.html
@@ -1,14 +1,13 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Sokoban Clone{% endblock %}
+{%- block title -%}Sokoban Clone{%- endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Sokoban Clone</h4>
<p>Git repository: <a href="/cgi-bin/cgit.cgi/sokoban">Link</a></p>
@@ -34,7 +33,6 @@ out of the FLTK Ada binding.</p>
Controls are simple enough that instructions can be left permanently written at the bottom of the
window. An <a href="https://brilliant.org/wiki/a-star-search/" class="external">A* Search</a>
algorithm is used for the mouse control.</p>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/steelman.html b/project/templates/steelman.html
index c49aba0..3ae2d95 100644
--- a/project/templates/steelman.html
+++ b/project/templates/steelman.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}D, Parasail, Pascal and Rust vs The Steelman{% endblock %}
+{%- block title -%}D, Parasail, Pascal and Rust vs The Steelman{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/steelman.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>D, Parasail, Pascal, and Rust vs The Steelman</h4>
<h5>29/10/2017</h5>
@@ -2433,7 +2432,6 @@ reader discretion is advised.</p>
</div>
</div>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/stvcount.html b/project/templates/stvcount.html
index e06bfb1..8d4c3ae 100644
--- a/project/templates/stvcount.html
+++ b/project/templates/stvcount.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Single Transferable Vote Counter{% endblock %}
+{%- block title -%}Single Transferable Vote Counter{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/stvcount.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Single Transferable Vote Counter</h4>
<p>Git repository: <a href="/cgi-bin/cgit.cgi/stv-count">Link</a></p>
@@ -300,7 +299,6 @@ legislation. Meaning that yes, the Liberal/National government would definitely
with a normal election.</p>
<p>Nice job screwing over your own party, Malcolm.</p>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/sunset.html b/project/templates/sunset.html
index 74955a8..bfad239 100644
--- a/project/templates/sunset.html
+++ b/project/templates/sunset.html
@@ -1,14 +1,13 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Sunset License{% endblock %}
+{%- block title -%}Sunset License{%- endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Sunset License</h4>
<p>Git repository: <a href="/cgi-bin/cgit.cgi/sunset">Link</a></p>
@@ -59,7 +58,6 @@ may do whatever you want with it, regardless of all other clauses.
<p>The git repository also contains an accompanying rationale and a simple logo I threw together. In
the future, all my projects will either use this license or the Unlicense. Works I've already
created will be relicensed as appropriate.</p>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/sydneyrail.html b/project/templates/sydneyrail.html
index 7c12117..a2959cf 100644
--- a/project/templates/sydneyrail.html
+++ b/project/templates/sydneyrail.html
@@ -1,14 +1,13 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Sydney Rail Maps{% endblock %}
+{%- block title -%}Sydney Rail Maps{%- endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Sydney Rail Maps</h4>
<p>Git repository: <a href="/cgi-bin/cgit.cgi/rail-maps">Link</a></p>
@@ -156,7 +155,6 @@ the distortions necessary for the clean schematic lines expected of such maps.</
<p>At some point I would like to go back and make a map that includes some of the mentioned unmapped
features. Although at that point it may be more practical to use computational routing methods.</p>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags.html b/project/templates/tags.html
index 349f575..be63920 100644
--- a/project/templates/tags.html
+++ b/project/templates/tags.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Tags{% endblock %}
+{%- block title -%}Tags{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/tags.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tags</h4>
<ul>
@@ -30,7 +29,6 @@
{%- endfor -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/application.html b/project/templates/tags/application.html
index caa763b..f1b4b60 100644
--- a/project/templates/tags/application.html
+++ b/project/templates/tags/application.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Application Tag{% endblock %}
+{%- block title -%}Application Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Application</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/binding.html b/project/templates/tags/binding.html
index 000b5e2..222ded4 100644
--- a/project/templates/tags/binding.html
+++ b/project/templates/tags/binding.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Binding Tag{% endblock %}
+{%- block title -%}Binding Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Binding</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/compsci.html b/project/templates/tags/compsci.html
index 07059c4..7b9f5b1 100644
--- a/project/templates/tags/compsci.html
+++ b/project/templates/tags/compsci.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Compsci Tag{% endblock %}
+{%- block title -%}Compsci Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Compsci</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/copyright.html b/project/templates/tags/copyright.html
index fe95b57..686b025 100644
--- a/project/templates/tags/copyright.html
+++ b/project/templates/tags/copyright.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Copyright Tag{% endblock %}
+{%- block title -%}Copyright Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Copyright</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/esoteric.html b/project/templates/tags/esoteric.html
index eccab45..223c57c 100644
--- a/project/templates/tags/esoteric.html
+++ b/project/templates/tags/esoteric.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Esoteric Tag{% endblock %}
+{%- block title -%}Esoteric Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Esoteric</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/language.html b/project/templates/tags/language.html
index 95339e5..a7730b8 100644
--- a/project/templates/tags/language.html
+++ b/project/templates/tags/language.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Language Tag{% endblock %}
+{%- block title -%}Language Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Language</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/legal.html b/project/templates/tags/legal.html
index 3a4048a..ff8b9d9 100644
--- a/project/templates/tags/legal.html
+++ b/project/templates/tags/legal.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Legal Tag{% endblock %}
+{%- block title -%}Legal Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Legal</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/library.html b/project/templates/tags/library.html
index 231b013..dd2dc62 100644
--- a/project/templates/tags/library.html
+++ b/project/templates/tags/library.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Library Tag{% endblock %}
+{%- block title -%}Library Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Library</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/maps.html b/project/templates/tags/maps.html
index a4adab9..745c49e 100644
--- a/project/templates/tags/maps.html
+++ b/project/templates/tags/maps.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Maps Tag{% endblock %}
+{%- block title -%}Maps Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Maps</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/mathematics.html b/project/templates/tags/mathematics.html
index 06074d1..b39967d 100644
--- a/project/templates/tags/mathematics.html
+++ b/project/templates/tags/mathematics.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Mathematics Tag{% endblock %}
+{%- block title -%}Mathematics Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Mathematics</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/politics.html b/project/templates/tags/politics.html
index 7a592f3..414ea98 100644
--- a/project/templates/tags/politics.html
+++ b/project/templates/tags/politics.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Politics Tag{% endblock %}
+{%- block title -%}Politics Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Politics</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/programming.html b/project/templates/tags/programming.html
index 99fa502..4c7d83c 100644
--- a/project/templates/tags/programming.html
+++ b/project/templates/tags/programming.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Programming Tag{% endblock %}
+{%- block title -%}Programming Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Programming</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/transport.html b/project/templates/tags/transport.html
index 1a2c797..863da30 100644
--- a/project/templates/tags/transport.html
+++ b/project/templates/tags/transport.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Transport Tag{% endblock %}
+{%- block title -%}Transport Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Transport</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/tags/videogames.html b/project/templates/tags/videogames.html
index 4ca747e..904aa29 100644
--- a/project/templates/tags/videogames.html
+++ b/project/templates/tags/videogames.html
@@ -1,20 +1,19 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Videogames Tag{% endblock %}
+{%- block title -%}Videogames Tag{%- endblock -%}
-{% block style %}
+{%- block style %}
<link href="/css/index.css" rel="stylesheet" />
-{% endblock %}
+{% endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Tag: Videogames</h4>
<ul class="index">
@@ -28,7 +27,6 @@
{%- endif -%}
{%- endfor %}
</ul>
-
-{% endblock %}
+{% endblock -%}
diff --git a/project/templates/thue2a.html b/project/templates/thue2a.html
index 806f096..76a1279 100644
--- a/project/templates/thue2a.html
+++ b/project/templates/thue2a.html
@@ -1,14 +1,13 @@
-{% extends "base.html" %}
+{%- extends "base.html" -%}
-{% block title %}Thue Version 2a{% endblock %}
+{%- block title -%}Thue Version 2a{%- endblock -%}
-{% block content %}
-
+{%- block content %}
<h4>Thue Version 2a</h4>
<p>Git repository: <a href="/cgi-bin/cgit.cgi/esoteric">Link</a></p>
@@ -101,7 +100,6 @@ a::=abc
<p>While this doesn't solve all the problems Thue has (try writing a Thue program that asks for and
greets the user by name!) it should solve this one particular issue.</p>
-
-{% endblock %}
+{% endblock -%}