diff options
author | Camil Staps | 2021-06-23 09:21:49 +0200 |
---|---|---|
committer | Camil Staps | 2021-06-23 09:21:49 +0200 |
commit | 351c2a94d368e88d033e4ba53b6b23301fb40a76 (patch) | |
tree | a070929ff1ea937c2cae56e861184a2d3f0be457 /resources/pug/include/layout-ham.pug | |
parent | Simplify layout-sidebar (diff) |
Replace menuItem mixin in sidebar layout with single menu mixin
Diffstat (limited to 'resources/pug/include/layout-ham.pug')
-rw-r--r-- | resources/pug/include/layout-ham.pug | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/resources/pug/include/layout-ham.pug b/resources/pug/include/layout-ham.pug index 1958c78..bb20ef0 100644 --- a/resources/pug/include/layout-ham.pug +++ b/resources/pug/include/layout-ham.pug @@ -5,5 +5,7 @@ block title block append menu - var base_url = '/ham/' - +menuItem('', 'Home') - +menuItem('cw-decoder', 'CW Decoder') + +menu( + {name: 'Home', link: ''}, + {name: 'CW Decoder'}, + ) |