33 lines
880 B
Plaintext
33 lines
880 B
Plaintext
|
extends /parts/page
|
||
|
block header
|
||
|
title #{content.title} - Netsoj.nl
|
||
|
|
||
|
block sidebar
|
||
|
include /parts/menu.dt
|
||
|
|
||
|
block content
|
||
|
section
|
||
|
header.project-header
|
||
|
img.project-icon(src="#{content.icon}", alt="Icon of #{content.title}")
|
||
|
div
|
||
|
h1.title #{content.title}
|
||
|
span.project-description #{content.description}
|
||
|
- if (content.images.length > 0)
|
||
|
div.screenshots
|
||
|
- foreach(image; content.images)
|
||
|
a(href="#{image}")
|
||
|
img.screenshot(src="#{image}", alt="Image of #{content.title}")
|
||
|
p
|
||
|
i To easily scroll horizontally on a desktop, hold shift while using the scroll wheel
|
||
|
- else
|
||
|
p
|
||
|
i This project has no images.
|
||
|
dl.project-platforms-technologies
|
||
|
dt Platforms
|
||
|
- foreach(platform; content.platforms)
|
||
|
dd.tag #{platform}
|
||
|
dt Technologies
|
||
|
- foreach(technology; content.technologies)
|
||
|
dd.tag #{technology}
|
||
|
| !{content.content}
|