Compare commits

...

2 commits
v1.0.4 ... main

Author SHA1 Message Date
aey
a187f31d73 Add timestamp 2026-05-14 13:59:59 +02:00
aey
51b54e1670 Remove obsolete dummies 2026-05-12 23:22:42 +02:00

View file

@ -1,4 +1,5 @@
from pathlib import Path from pathlib import Path
from datetime import datetime
def vaktis(): def vaktis():
@ -45,6 +46,7 @@ def vaktis():
"layout": "events.ics.j2", "layout": "events.ics.j2",
"_destination": Path("kommande-evenemang.ics"), "_destination": Path("kommande-evenemang.ics"),
"content": "", "content": "",
"calcreation": datetime.now(),
}, },
), ),
( (
@ -56,49 +58,6 @@ def vaktis():
"content": "", "content": "",
}, },
), ),
(
Path("webblogg.md"),
{
"layout": "blog.html.j2",
"title": "Anders Englöf Ytterströms webblogg",
"_destination": Path("webblogg/index.md"),
"content": "",
"page": 0,
},
),
(
Path("inlagg.md"),
{
"layout": "blog.articles.html.j2",
"title": "Inlägg från Anders Englöf Ytterströms webblogg",
"select": "articles",
"_destination": Path("inlagg/index.md"),
"content": "",
"page": 0,
},
),
(
Path("lanktips.md"),
{
"layout": "blog.links.html.j2",
"title": "Länktips från Anders Englöf Ytterströms webblogg",
"select": "links",
"_destination": Path("lanktips/index.md"),
"content": "",
"page": 0,
},
),
(
Path("evenemang.html"),
{
"layout": "blog.events.html.j2",
"title": "Anders Englöf Ytterströms deltaganden i konserter och festivaler sedan 2000",
"select": "events",
"_destination": Path("evenemang/index.md"),
"content": "",
"page": 0,
},
),
] + list(items) ] + list(items)
return map(lambda i: i, items) return map(lambda i: i, items)