diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2023-02-25 23:18:49 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2023-02-25 23:18:49 +0000 |
commit | 2831eb8af07b1c387f17cf4d9a4b3a1b1aa47bb5 (patch) | |
tree | 4c32c0b8b38ce382d5ea7f24147e230c75263230 | |
parent | 988c90ce774d163a5aec17e18fd9c9c3c8bfb3b0 (diff) | |
download | boymoder.blog-2831eb8af07b1c387f17cf4d9a4b3a1b1aa47bb5.tar.gz boymoder.blog-2831eb8af07b1c387f17cf4d9a4b3a1b1aa47bb5.zip |
Added disclaimer to diary page
-rwxr-xr-x | templates/diary.html.j2 | 4 |
1 files changed, 3 insertions, 1 deletions
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 %} + <h4>this page might not be up-to-date if my diary account is search banned</h4> + <p>if in doubt check my <a href="https://twitter.com/FORMER_SHOTA">diary account</a> <br> <s>serves me right for using the official API instead of HTML scraping like i did with the <a href="/">recent tweets</a> thing</s> <br> <a href="https://shadowban.yuzurisa.com/FORMER_SHOTA">check if i'm currently search banned</a></p> <dl> {% for dt, entries in diary.items() %} <dt><a href="{{ entries[0]['link'] }}">{{ dt }}</a></dt> @@ -21,4 +23,4 @@ </dd> {% endfor %} </dl> -{% endblock %}
\ No newline at end of file +{% endblock %} |