File tree 5 files changed +76
-1
lines changed
5 files changed +76
-1
lines changed Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div >
3
+ <img
4
+ class =" info"
5
+ src =" /images/covid-infographic.svg"
6
+ alt =" Covid 19 Infographic"
7
+ />
8
+ <p class =" text-center mr-5" >
9
+ Please click
10
+ <a href =" https://www.who.int/emergencies/diseases/novel-coronavirus-2019"
11
+ ><strong >here</strong ></a
12
+ >
13
+ to find additional information on Covid-19 at the World Health
14
+ Organisation
15
+ </p >
16
+
17
+ <br />
18
+ </div >
19
+ </template >
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import PageSessionSingle from '../views/PageSessionSingle.vue';
12
12
import PageSpeakers from '../views/PageSpeakers.vue' ;
13
13
import PageSpeakerSingle from '../views/PageSpeakerSingle.vue' ;
14
14
import PageVenue from '../views/PageVenue.vue' ;
15
+ import PageHealth from '../views/PageHealth.vue' ;
15
16
16
17
17
18
Vue . use ( VueRouter ) ;
@@ -41,13 +42,21 @@ const routes = [
41
42
title : "Venue"
42
43
}
43
44
} ,
45
+ {
46
+ path : "/health" ,
47
+ name : "PageHealth" ,
48
+ component : PageHealth ,
49
+ meta : {
50
+ title : "Health and Hygiene"
51
+ }
52
+ } ,
44
53
{
45
54
path : '/credits' ,
46
55
name : 'PageCredits' ,
47
56
component : PageCredits ,
48
57
meta : {
49
58
title : 'Credits' ,
50
- layout :'full'
59
+ layout : 'full'
51
60
}
52
61
} ,
53
62
{
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div class =" page-health generic-page" >
3
+ <health ></health >
4
+ </div >
5
+ </template >
6
+
7
+ <script >
8
+ import health from " @/components/health.vue" ;
9
+
10
+ export default {
11
+ name: " PageHealth" ,
12
+ components: {
13
+ health
14
+ }
15
+ };
16
+ </script >
17
+
18
+ <style lang="scss">
19
+ .page-health {
20
+
21
+ }
22
+ .info {
23
+ margin-right : auto ;
24
+ margin-left : auto ;
25
+ }
26
+ </style >
You can’t perform that action at this time.
0 commit comments