| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 | 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: 'Testing Arduino code with Haskell QuickCheck',
				year: 2021, month: 9, day: 7
			},
			{ name: 'Cloogle search overview',
				year: 2021, month: 8, day: 2
			},
			{ 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
			},
		]},
	)
 |