26 lines
556 B
Plaintext
26 lines
556 B
Plaintext
|
extends /parts/page.dt
|
||
|
|
||
|
block header
|
||
|
title Projects - Netsoj.nl
|
||
|
|
||
|
block sidebar
|
||
|
include /parts/menu.dt
|
||
|
|
||
|
block content
|
||
|
header
|
||
|
h1.title Projects
|
||
|
p Note: I'm not a graphic designer, so please ignore the icons.
|
||
|
- if (projectList.length == 0)
|
||
|
p No projects found
|
||
|
- foreach(project; projectList)
|
||
|
div.project
|
||
|
img(src="#{project.icon}")
|
||
|
h2 #{project.title}
|
||
|
p.platforms
|
||
|
- foreach(platform; project.platforms)
|
||
|
span.platform #{platform}
|
||
|
p.technologies
|
||
|
- foreach(technology; project.technologies)
|
||
|
span.platform #{technology}
|
||
|
|