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
