Compare commits

..

No commits in common. "main" and "v1.0.0" have entirely different histories.
main ... v1.0.0

View file

@ -6,115 +6,52 @@ def vaktis():
items = list(items) items = list(items)
items.append( items.append(
( (
Path("prenumerera.xml"), Path("/index.md"),
{ {
"layout": "atom.xml.j2", "template": "home.html.j2",
"_destination": Path("prenumerera.xml"), "_destination": Path("/index.md"),
"content": "",
}, },
) )
) )
items.append( items.append(
( (
Path("prenumerera/lanktips.xml"), Path("/webblogg.md"),
{ {
"layout": "atom.xml.j2", "template": "blog.html.j2",
"_destination": Path("prenumerera/lanktips.xml"), "_destination": Path("/webblogg/index.md"),
"content": "",
"select": "links",
}, },
) )
) )
items.append( items.append(
( (
Path("prenumerera/inlagg.xml"), Path("/inlagg.md"),
{ {
"layout": "atom.xml.j2", "template": "blog.html.j2",
"_destination": Path("prenumerera/inlagg.xml"),
"content": "",
"select": "articles", "select": "articles",
"_destination": Path("/inlagg/index.md"),
}, },
) )
) )
items.append( items.append(
( (
Path("prenumerera/evenemang.xml"), Path("/lanktips.md"),
{ {
"layout": "atom.xml.j2", "template": "blog.html.j2",
"_destination": Path("prenumerera/evenemang.xml"),
"content": "",
"select": "events",
},
)
)
items.append(
(
Path("kommande-evenemang.ics"),
{
"layout": "events.ics.j2",
"_destination": Path("kommande-evenemang.ics"),
"content": "",
},
)
)
items.append(
(
Path("index.md"),
{
"title": "Anders Englöf Ytterströms hemsida",
"layout": "home.html.j2",
"_destination": Path("index.md"),
"content": "",
},
)
)
items.append(
(
Path("webblogg.md"),
{
"layout": "blog.html.j2",
"title": "Anders Englöf Ytterströms webblogg",
"_destination": Path("webblogg/index.md"),
"content": "",
},
)
)
items.append(
(
Path("inlagg.md"),
{
"layout": "blog.html.j2",
"title": "Inlägg från Anders Englöf Ytterströms webblogg",
"select": "articles",
"_destination": Path("inlagg/index.md"),
"content": "",
},
)
)
items.append(
(
Path("lanktips.md"),
{
"layout": "blog.html.j2",
"title": "Länktips från Anders Englöf Ytterströms webblogg",
"select": "links", "select": "links",
"_destination": Path("lanktips/index.md"), "_destination": Path("/lanktips/index.md"),
"content": "",
}, },
) )
) )
items.append( items.append(
( (
Path("evenemang.html"), Path("/evenemang.html"),
{ {
"layout": "blog.html.j2", "template": "blog.html.j2",
"title": "Anders Englöf Ytterströms deltaganden i konserter och festivaler sedan 2000",
"select": "events", "select": "events",
"_destination": Path("evenemang/index.md"), "_destination": Path("/evenemang/index.md"),
"content": "",
}, },
) )
) )
return map(lambda i: i, items) return map(lambda i: i, items), _metadata
return callback return callback