aboutsummaryrefslogtreecommitdiffstats
path: root/app.py
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2025-04-29 14:47:26 +0100
committerjwansek <eddie.atten.ea29@gmail.com>2025-04-29 14:47:26 +0100
commit015edbc0ea284fcdf7e5a3796d711a96036814be (patch)
tree4e85adb949fc3da4d184bd3ac845a93ff17f046b /app.py
parentdd3f431d2f20409ccb490241e70687a5f5c7c79c (diff)
downloadeda.gay-015edbc0ea284fcdf7e5a3796d711a96036814be.tar.gz
eda.gay-015edbc0ea284fcdf7e5a3796d711a96036814be.zip
Added FFS counter
Diffstat (limited to 'app.py')
-rwxr-xr-xapp.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/app.py b/app.py
index d1f1134..47bb129 100755
--- a/app.py
+++ b/app.py
@@ -68,9 +68,10 @@ def index():
return flask.render_template(
"index.html.j2",
**get_template_items("eden's site :3", db),
+ days_till_ffs = datetime.datetime(2025, 11, 8) - datetime.datetime.now(),
markdown = parser.parse_text(f.read())[0],
featured_thoughts = db.get_featured_thoughts(),
- commits = db.get_cached_commits()[:10],
+ commits = db.get_cached_commits()[:15],
sidebar_img = get_sidebar_img(db)
)