-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.pug
37 lines (31 loc) · 950 Bytes
/
index.pug
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
extends ./base-templates/index
block vars
- var title = 'DevMeeting React Native'
- var date = '23th March 2019'
- var link = 'http://bit.ly/react-native-devmeeting'
block title
| #{title}
block header
| #{title}
block date
| #{date}
block link
| #{link}
block program
ol
li
+item('Basic components')
+btn('Slides', 'slides/basic-components')
+btn('Tasks', 'tasks/basic-components')
li
+item('Handling input and storage')
+btn('Slides', 'slides/handling-input-and-storage')
+btn('Tasks', 'tasks/handling-input-and-storage')
li
+item('Navigation')
+btn('Slides', 'slides/navigation')
+btn('Tasks', 'tasks/navigation')
li
+item('Location')
+btn('Slides', 'slides/location')
+btn('Tasks', 'tasks/location')