diff --git a/src/smed_vaktis/plugin.py b/src/smed_vaktis/plugin.py index 2be3933..db4673c 100644 --- a/src/smed_vaktis/plugin.py +++ b/src/smed_vaktis/plugin.py @@ -9,7 +9,7 @@ def vaktis(): Path("index.md"), { "title": "Anders Englöf Ytterströms hemsida", - "template": "home.html.j2", + "layout": "home.html.j2", "_destination": Path("index.md"), "content": "", }, @@ -19,7 +19,7 @@ def vaktis(): ( Path("webblogg.md"), { - "template": "blog.html.j2", + "layout": "blog.html.j2", "title": "Anders Englöf Ytterströms webblogg", "_destination": Path("webblogg/index.md"), "content": "", @@ -30,7 +30,7 @@ def vaktis(): ( Path("inlagg.md"), { - "template": "blog.html.j2", + "layout": "blog.html.j2", "title": "Anders Englöf Ytterströms webblogg", "select": "articles", "_destination": Path("inlagg/index.md"), @@ -42,7 +42,7 @@ def vaktis(): ( Path("lanktips.md"), { - "template": "blog.html.j2", + "layout": "blog.html.j2", "title": "Anders Englöf Ytterströms webblogg", "select": "links", "_destination": Path("lanktips/index.md"), @@ -54,7 +54,7 @@ def vaktis(): ( Path("evenemang.html"), { - "template": "blog.html.j2", + "layout": "blog.html.j2", "title": "Anders Englöf Ytterströms deltaganden i konserter och festivaler sedan 2000", "select": "events", "_destination": Path("evenemang/index.md"),