chris-website/views/pages/project-list.dt

29 lines
765 B
Plaintext
Raw Normal View History

2020-06-24 08:08:28 +00:00
extends /parts/page.dt
block header
title Projects - Netsoj.nl
block sidebar
include /parts/menu.dt
block content
header
h1.title Projects
2020-06-24 13:53:18 +00:00
p Since I'm not a graphic designer, I'd like you to pretend the abominations are actually icons.
2020-06-24 08:08:28 +00:00
- if (projectList.length == 0)
p No projects found
- foreach(project; projectList)
2020-06-24 13:53:18 +00:00
section.project-header
img.project-icon(src="#{project.icon}", alt="Icon of #{project.title}")
div
a(href="/projects/#{project.slug}", rel="bookmark")
h2.title #{project.title}
div.platforms-technologies
- foreach(platform; project.platforms)
span.tag #{platform}
| |
- foreach(technology; project.technologies)
span.tag #{technology}
p.project-description #{project.description}
2020-06-24 08:08:28 +00:00