diff options
author | Camil Staps | 2021-06-23 09:25:36 +0200 |
---|---|---|
committer | Camil Staps | 2021-06-23 09:25:36 +0200 |
commit | 9b8045e9ff6fc02dde1f0e14ecb419d852352633 (patch) | |
tree | fd0a206697ca520079f7737f9f669c80787ffc35 /resources/pug/include/layout-articles.pug | |
parent | Replace menuItem mixin in sidebar layout with single menu mixin (diff) |
Setup infrastructure for articles written in markdown
Diffstat (limited to 'resources/pug/include/layout-articles.pug')
-rw-r--r-- | resources/pug/include/layout-articles.pug | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/resources/pug/include/layout-articles.pug b/resources/pug/include/layout-articles.pug new file mode 100644 index 0000000..88b1aea --- /dev/null +++ b/resources/pug/include/layout-articles.pug @@ -0,0 +1,8 @@ +extends layout-sidebar.pug + +block append menu + - var base_url = '/articles/' + +menu( + {name: 'Home', link: ''}, + {name: 'Clean Sandbox', year: 2021, month: 6, day: 22}, + ) |