summaryrefslogtreecommitdiffhomepage
path: root/resources/pug/include/layout-articles.pug
blob: c35e38ba7c1d860828ce403133370416395fdd98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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: 'Cloogle search overview',
				year: 2021, month: 7, day: 26
			},
			{ 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
			},
		]},
	)