diff options
author | Camil Staps | 2021-06-23 19:20:29 +0200 |
---|---|---|
committer | Camil Staps | 2021-06-23 19:20:29 +0200 |
commit | bbc049b5c7749b8f9c4e1ade9cf1da4f91f37c0d (patch) | |
tree | 9fe20b0549b51a7165b847ac1a6a5f56a128ff92 /resources/pug/include/layout-articles.pug | |
parent | Add author on articles (diff) |
Add article series on the clean sandbox
Diffstat (limited to 'resources/pug/include/layout-articles.pug')
-rw-r--r-- | resources/pug/include/layout-articles.pug | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/resources/pug/include/layout-articles.pug b/resources/pug/include/layout-articles.pug index 2672a36..10feaab 100644 --- a/resources/pug/include/layout-articles.pug +++ b/resources/pug/include/layout-articles.pug @@ -1,10 +1,21 @@ extends layout-sidebar.pug +block append breadcrumbs + +breadcrumb('/articles/', 'Articles') + block append menu - var base_url = '/articles/' +menu( {name: 'Home', link: ''}, {name: 2021, menu: [ - {name: 'Running the Clean compiler in the browser with WebAssembly', year: 2021, month: 6, day: 23}, + { name: 'Compiling Clean in the browser with WebAssembly, part 3: Putting it all together', + year: 2021, month: 6, day: 23 + }, + { name: 'Compiling Clean in the browser with WebAssembly, part 2: The pipeline', + year: 2021, month: 6, day: 23 + }, + { name: 'Compiling Clean in the browser with WebAssembly, part 1: Introduction', + year: 2021, month: 6, day: 23 + }, ]}, ) |