20 lines
424 B
Plaintext
20 lines
424 B
Plaintext
extends layout
|
|
|
|
mixin entry($item)
|
|
.list__item
|
|
p !{$item['week']} >> !{$item['artist']} - !{$item['title']} (!{$item['year']})
|
|
|
|
block content
|
|
header
|
|
nav
|
|
a(href="/about") about me
|
|
| >
|
|
a(href="/music") music
|
|
| > album of the week
|
|
h1 Yarmo's Album Of The Week
|
|
|
|
main
|
|
.list
|
|
each $item in $albums
|
|
+entry($item)
|