13 lines
360 B
Plaintext
13 lines
360 B
Plaintext
|
|
extend templates/layout.pug
|
||
|
|
|
||
|
|
block content
|
||
|
|
.container
|
||
|
|
.center
|
||
|
|
h1 Projects
|
||
|
|
|
||
|
|
if projects.length == 0
|
||
|
|
p.flow-text No projects owned by #{entityName}
|
||
|
|
else
|
||
|
|
each project in projects
|
||
|
|
p.flow-text
|
||
|
|
a(href=`/projects/${project.id}`)= project.name
|