|
|
@@ -1,57 +1,64 @@
|
|
1
|
1
|
// Replace with calls to menu system
|
|
2
|
2
|
<template lang="pug">
|
|
3
|
|
-nav.main.f-row.center.between
|
|
4
|
|
- ul.f-row.between
|
|
5
|
|
- li
|
|
6
|
|
- router-link(to="/")
|
|
7
|
|
- h1.t-serif.t-up x
|
|
8
|
|
- span.t-up logotype
|
|
9
|
|
- li.f-grow
|
|
10
|
|
- p
|
|
11
|
|
- li
|
|
12
|
|
- router-link(:to="`/`")
|
|
13
|
|
- p.t-up home
|
|
14
|
|
- li
|
|
15
|
|
- router-link(:to="`/episodes`")
|
|
16
|
|
- p.t-up pbs series
|
|
17
|
|
- li
|
|
18
|
|
- router-link(:to="`/artists`")
|
|
19
|
|
- p.t-up artists
|
|
20
|
|
- li
|
|
21
|
|
- router-link(:to="`/exhibitions`")
|
|
22
|
|
- p.t-up exhibitions
|
|
23
|
|
- li
|
|
24
|
|
- router-link(:to="`/events`")
|
|
25
|
|
- p.t-up events
|
|
26
|
|
- li
|
|
27
|
|
- router-link(:to="`/center`")
|
|
28
|
|
- p.t-up center
|
|
29
|
|
- li
|
|
30
|
|
- router-link(:to="`/education`")
|
|
31
|
|
- p.t-up education
|
|
32
|
|
- li
|
|
33
|
|
- router-link(:to="`/posts`")
|
|
34
|
|
- p.t-up news
|
|
35
|
|
- li
|
|
36
|
|
- router-link(:to="`/support`")
|
|
37
|
|
- p.t-up support
|
|
38
|
|
- li
|
|
39
|
|
- router-link(:to="`/search`")
|
|
40
|
|
- p.t-up search
|
|
|
3
|
+.nav-wrapper.f-row.between.t-up
|
|
|
4
|
+ nav.main.f-grow.between
|
|
|
5
|
+ ul.f-row.between
|
|
|
6
|
+ li
|
|
|
7
|
+ router-link(to="/")
|
|
|
8
|
+ h1.t-serif x
|
|
|
9
|
+ span logotype
|
|
|
10
|
+ li
|
|
|
11
|
+ h5
|
|
|
12
|
+ li
|
|
|
13
|
+ router-link(:to="`/`")
|
|
|
14
|
+ h5 home
|
|
|
15
|
+ li
|
|
|
16
|
+ router-link(:to="`/episodes`")
|
|
|
17
|
+ h5 pbs series
|
|
|
18
|
+ li
|
|
|
19
|
+ router-link(:to="`/artists`")
|
|
|
20
|
+ h5 artists
|
|
|
21
|
+ li
|
|
|
22
|
+ router-link(:to="`/exhibitions`")
|
|
|
23
|
+ h5 exhibitions
|
|
|
24
|
+ li
|
|
|
25
|
+ router-link(:to="`/events`")
|
|
|
26
|
+ h5 events
|
|
|
27
|
+ li
|
|
|
28
|
+ router-link(:to="`/center`")
|
|
|
29
|
+ h5 center
|
|
|
30
|
+ li
|
|
|
31
|
+ router-link(:to="`/education`")
|
|
|
32
|
+ h5 education
|
|
|
33
|
+ li
|
|
|
34
|
+ router-link(:to="`/posts`")
|
|
|
35
|
+ h5 news
|
|
|
36
|
+ li
|
|
|
37
|
+ router-link(:to="`/support`")
|
|
|
38
|
+ h5 support
|
|
|
39
|
+ li
|
|
|
40
|
+ router-link(:to="`/search`")
|
|
|
41
|
+ h5 search
|
|
41
|
42
|
</template>
|
|
42
|
43
|
|
|
43
|
44
|
<style lang="postcss">
|
|
44
|
45
|
@import '../../sss/variables.sss'
|
|
45
|
46
|
|
|
46
|
|
-nav.main
|
|
47
|
|
- position: sticky
|
|
48
|
|
- top: 0
|
|
49
|
|
- ul
|
|
50
|
|
- width: $max-width
|
|
51
|
|
- li
|
|
52
|
|
- p
|
|
53
|
|
- color: $cia_black
|
|
54
|
|
- h1
|
|
55
|
|
- font-size: 1.5em
|
|
56
|
|
- color: $cia_red
|
|
|
47
|
+.nav-wrapper
|
|
|
48
|
+ background-color: green
|
|
|
49
|
+ width: 100%
|
|
|
50
|
+ nav.main
|
|
|
51
|
+ background-color: lightblue
|
|
|
52
|
+ max-width: $max-width
|
|
|
53
|
+ width: 90%
|
|
|
54
|
+ padding: $ms 0
|
|
|
55
|
+ align-items: flex-start
|
|
|
56
|
+ ul
|
|
|
57
|
+ background-color: grey
|
|
|
58
|
+ li
|
|
|
59
|
+ h5
|
|
|
60
|
+ color: $cia_black
|
|
|
61
|
+ h1
|
|
|
62
|
+ font-size: 1.5em
|
|
|
63
|
+ color: $cia_red
|
|
57
|
64
|
</style>
|