diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2021-11-24 08:24:10 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2021-11-24 08:24:10 +1300 |
commit | 03ea6ba48bfbb25dc74a0a369b5aa15bf10e91b9 (patch) | |
tree | f37ee253eeb9fd5345480f68d6aa6b72894223a4 /project/templates/deckconv.html | |
parent | 61c0c3795c2a6684c6917a79da7911de7a9c346a (diff) |
Fixed spacing issues
Diffstat (limited to 'project/templates/deckconv.html')
-rw-r--r-- | project/templates/deckconv.html | 10 |
1 files changed, 4 insertions, 6 deletions
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 -%} |