From cc2aede0c79ffab0ea6ece346225095a85377269 Mon Sep 17 00:00:00 2001 From: Kira Date: Thu, 9 Feb 2023 18:51:35 +0000 Subject: Update sidebar id --- templates/template.html.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates') diff --git a/templates/template.html.j2 b/templates/template.html.j2 index b0bf62c..f80155d 100755 --- a/templates/template.html.j2 +++ b/templates/template.html.j2 @@ -33,7 +33,7 @@ - + {{image[0]}} -- cgit v1.2.3 From 2831eb8af07b1c387f17cf4d9a4b3a1b1aa47bb5 Mon Sep 17 00:00:00 2001 From: jwansek Date: Sat, 25 Feb 2023 23:18:49 +0000 Subject: Added disclaimer to diary page --- templates/diary.html.j2 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'templates') diff --git a/templates/diary.html.j2 b/templates/diary.html.j2 index 15cbe71..d7c363b 100755 --- a/templates/diary.html.j2 +++ b/templates/diary.html.j2 @@ -1,5 +1,7 @@ {% extends "template.html.j2" %} {% block content %} +

this page might not be up-to-date if my diary account is search banned

+

if in doubt check my diary account
serves me right for using the official API instead of HTML scraping like i did with the recent tweets thing
check if i'm currently search banned

{% for dt, entries in diary.items() %}
{{ dt }}
@@ -21,4 +23,4 @@ {% endfor %}
-{% endblock %} \ No newline at end of file +{% endblock %} -- cgit v1.2.3 From 7c53f89ccdd92e308d14d069e2e070f7a1c2da26 Mon Sep 17 00:00:00 2001 From: jwansek Date: Mon, 27 Feb 2023 00:05:41 +0000 Subject: Added q&a page --- templates/questions.html.j2 | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 templates/questions.html.j2 (limited to 'templates') diff --git a/templates/questions.html.j2 b/templates/questions.html.j2 new file mode 100644 index 0000000..fd53120 --- /dev/null +++ b/templates/questions.html.j2 @@ -0,0 +1,13 @@ +{% extends "template.html.j2" %} +{% block content %} +

ask a question!

+
+ {% for id_, link, dt, question, answer in qnas %} +
{{ dt.isoformat() }}
+
+
{{ question }}
+
{{ answer }}
+ + {% endfor %} +
+{% endblock %} \ No newline at end of file -- cgit v1.2.3 From 96090364a7ebcfcf35f924cdd9f24f6898257e6a Mon Sep 17 00:00:00 2001 From: jwansek Date: Mon, 27 Feb 2023 00:09:28 +0000 Subject: Added

tags on q&a page --- templates/questions.html.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'templates') diff --git a/templates/questions.html.j2 b/templates/questions.html.j2 index fd53120..6f9c1eb 100644 --- a/templates/questions.html.j2 +++ b/templates/questions.html.j2 @@ -5,8 +5,8 @@ {% for id_, link, dt, question, answer in qnas %}

{{ dt.isoformat() }}
-
{{ question }}
-
{{ answer }}
+

{{ question }}

+

{{ answer }}

{% endfor %} -- cgit v1.2.3 From cfc2bfbec443ea24f4af0027a077267771b0698f Mon Sep 17 00:00:00 2001 From: jwansek Date: Sun, 5 Mar 2023 13:40:17 +0000 Subject: Fixed bug with curiouscat URLs --- templates/questions.html.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates') diff --git a/templates/questions.html.j2 b/templates/questions.html.j2 index 6f9c1eb..2d0eaf2 100644 --- a/templates/questions.html.j2 +++ b/templates/questions.html.j2 @@ -10,4 +10,4 @@ {% endfor %} -{% endblock %} \ No newline at end of file +{% endblock %} -- cgit v1.2.3