@@ -10,42 +10,66 @@ <h1 class="inter-700 text-48 text-white text-center z-4">{{ .Title | markdownify
10
10
{{/* Main Section with Side Navigation */}}
11
11
< section class ="section ">
12
12
< div class ="container-lg ">
13
-
13
+
14
14
< div class ="row gy-5 justify-content-center justify-content-lg-between ">
15
15
<!-- Side Navigation -->
16
16
< div id ="eventResourcesSidebar " class ="d-lg-block event-resources-nav sidebar-container " style ="width: 280px !important; ">
17
17
< div class ="d-flex flex-column row-gap-3 my-2 ">
18
- < a href ="/training-materials/ "
18
+ < a href ="/training-materials/ "
19
19
class ="bg-white rounded-3 shadow-sm px-3 py-2 d-flex align-items-center gap-2 nav-link sideLink {{ if eq .RelPermalink "/training-materials/" }}active{{ end }}">
20
20
< span class ="inter-400 dark-700 text-16 mb-0 pt-1 filter-icon animate {{ if eq .RelPermalink "/training-materials/" }}active-text{{ end }}"> Training Materials</ span >
21
21
</ a >
22
- < a href ="/organizing-nwb-events/ "
22
+ < a href ="/organizing-nwb-events/ "
23
23
class ="bg-white rounded-3 shadow-sm px-3 py-2 d-flex align-items-center gap-2 nav-link sideLink {{ if eq .RelPermalink "/organizing-nwb-events/" }}active{{ end }}">
24
24
< span class ="inter-400 dark-700 text-16 mb-0 pt-1 filter-icon animate {{ if eq .RelPermalink "/organizing-nwb-events/" }}active-text{{ end }}"> Organizing NWB Events</ span >
25
25
</ a >
26
- < a href ="/agenda-templates/ "
26
+ < a href ="/agenda-templates/ "
27
27
class ="bg-white rounded-3 shadow-sm px-3 py-2 d-flex align-items-center gap-2 nav-link sideLink {{ if eq .RelPermalink "/agenda-templates/" }}active{{ end }}">
28
28
< span class ="inter-400 dark-700 text-16 mb-0 pt-1 filter-icon animate {{ if eq .RelPermalink "/agenda-templates/" }}active-text{{ end }}"> Agenda Templates</ span >
29
29
</ a >
30
- < a href ="/email-templates/ "
30
+ < a href ="/email-templates/ "
31
31
class ="bg-white rounded-3 shadow-sm px-3 py-2 d-flex align-items-center gap-2 nav-link sideLink {{ if eq .RelPermalink "/email-templates/" }}active{{ end }}">
32
32
< span class ="inter-400 dark-700 text-16 mb-0 pt-1 filter-icon animate {{ if eq .RelPermalink "/email-templates/" }}active-text{{ end }}"> Email Templates</ span >
33
33
</ a >
34
- < a href ="/create-event-website/ "
34
+ < a href ="/create-event-website/ "
35
35
class ="bg-white rounded-3 shadow-sm px-3 py-2 d-flex align-items-center gap-2 nav-link sideLink {{ if eq .RelPermalink "/create-event-website/" }}active{{ end }}">
36
36
< span class ="inter-400 dark-700 text-16 mb-0 pt-1 filter-icon animate {{ if eq .RelPermalink "/create-event-website/" }}active-text{{ end }}"> Creating an Event Website</ span >
37
37
</ a >
38
- < a href ="/organizing-events-faq/ "
38
+ < a href ="/organizing-events-faq/ "
39
39
class ="bg-white rounded-3 shadow-sm px-3 py-2 d-flex align-items-center gap-2 nav-link sideLink {{ if eq .RelPermalink "/organizing-events-faq/" }}active{{ end }}">
40
40
< span class ="inter-400 dark-700 text-16 mb-0 pt-1 filter-icon animate {{ if eq .RelPermalink "/organizing-events-faq/" }}active-text{{ end }}"> Organizing Events FAQ</ span >
41
41
</ a >
42
42
</ div >
43
43
</ div >
44
-
44
+
45
45
<!-- Main Content -->
46
46
< div class ="col-12 col-sm-11 col-lg-8 col-xl-9 ">
47
- < div class ="content inter-400 text-18 dark-700 rounded-3 p-2 p-sm-5 shadow-sm bg-white ">
47
+ < div class ="content inter-400 text-18 dark-700 rounded-3 p-2 p-sm-5 shadow-sm bg-white ">
48
48
{{ .Content | markdownify }}
49
+
50
+ <!-- Next Page Navigation -->
51
+ {{ $currentPage := .RelPermalink }}
52
+ {{ if eq $currentPage "/training-materials/" }}
53
+ < div class ="d-flex justify-content-end mt-4 ">
54
+ < a href ="/organizing-nwb-events/ " class ="btn next-page-btn "> Next: Organizing NWB Events →</ a >
55
+ </ div >
56
+ {{ else if eq $currentPage "/organizing-nwb-events/" }}
57
+ < div class ="d-flex justify-content-end mt-4 ">
58
+ < a href ="/agenda-templates/ " class ="btn next-page-btn "> Next: Agenda Templates →</ a >
59
+ </ div >
60
+ {{ else if eq $currentPage "/agenda-templates/" }}
61
+ < div class ="d-flex justify-content-end mt-4 ">
62
+ < a href ="/email-templates/ " class ="btn next-page-btn "> Next: Email Templates →</ a >
63
+ </ div >
64
+ {{ else if eq $currentPage "/email-templates/" }}
65
+ < div class ="d-flex justify-content-end mt-4 ">
66
+ < a href ="/create-event-website/ " class ="btn next-page-btn "> Next: Creating an Event Website →</ a >
67
+ </ div >
68
+ {{ else if eq $currentPage "/create-event-website/" }}
69
+ < div class ="d-flex justify-content-end mt-4 ">
70
+ < a href ="/organizing-events-faq/ " class ="btn next-page-btn "> Next: Organizing Events FAQ →</ a >
71
+ </ div >
72
+ {{ end }}
49
73
</ div >
50
74
</ div >
51
75
</ div >
0 commit comments