landmark-serve
Version:
Web Application Framework and Admin GUI / Content Management System built on Express.js and Mongoose
24 lines (21 loc) • 541 B
text/jade
extends ../layout/base
block intro
.page-header
h1 Manage
block content
.landmark-lists
if nav.flat
each list in lists
if (!list.get('hidden'))
h3: a(href='/landmark/' + list.path)= list.label
else
each navSection in nav.sections
.nav-section
h4= navSection.label
ul: each list in navSection.lists
li: a(href='/landmark/' + list.path)= list.label
if orphanedLists.length
.nav-section
h4 Other
ul: each list in orphanedLists
li: a(href='/landmark/' + list.path)= list.label