|
|
@@ -1,14 +1,14 @@
|
|
1
|
1
|
<template lang="pug">
|
|
2
|
2
|
.page--list.f-col.between
|
|
3
|
3
|
article.f-grow
|
|
4
|
|
- //- breadcrumb links here at top of page
|
|
5
|
|
- h3.t-up.breadcrumb {{ type }}
|
|
|
4
|
+ //- breadcrumb links here at top of page probably not needed for list page as its obvious - delete probably
|
|
|
5
|
+ h5.t-up {{ type }}
|
|
6
|
6
|
|
|
7
|
7
|
header.f-col.center.t-up
|
|
8
|
8
|
.title.f-row
|
|
9
|
|
- h1 {{ type }} list
|
|
|
9
|
+ h3 {{ type }} list
|
|
10
|
10
|
span(v-if="sortBy")
|
|
11
|
|
- h1 sorted by {{ sortBy.replace('-', ' ') }}
|
|
|
11
|
+ h3 sorted by {{ sortBy.replace('-', ' ') }}
|
|
12
|
12
|
|
|
13
|
13
|
h3(v-if="!loaded") loading...
|
|
14
|
14
|
.content(v-else-if="allPagesLoaded && type && allPages[type]" v-html="allPages[type].content")
|
|
|
@@ -22,14 +22,14 @@
|
|
22
|
22
|
p {{ `show sidebar: ${sidebar}` }}
|
|
23
|
23
|
|
|
24
|
24
|
sidebar(v-if="sidebar" :type="`${type}`")
|
|
25
|
|
- .shadow
|
|
26
|
|
- h3.t-up Upcoming {{ type }}
|
|
|
25
|
+ .shadow.t-up
|
|
|
26
|
+ h3 Upcoming {{ type }}
|
|
27
|
27
|
div
|
|
28
|
|
- h1 upcoming title
|
|
|
28
|
+ p upcoming title
|
|
29
|
29
|
p date-from: date-to:
|
|
30
|
30
|
p location
|
|
31
|
31
|
br
|
|
32
|
|
- h1 upcoming title
|
|
|
32
|
+ p upcoming title
|
|
33
|
33
|
p date-from: date-to:
|
|
34
|
34
|
p location
|
|
35
|
35
|
|