-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.nim
73 lines (60 loc) · 1.21 KB
/
index.nim
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import nimib, nimislides
import our
import nimib_intro, about_nimislides, about_nimibook
template titleSlide* =
slide:
nbText """
## Updates from NimibLand
"""
reference "[github.com/nimib-land/nimconf24](https://github.com/nimib-land/nimconf24)"
template agendaSlide* =
slide:
nbText: """
## Agenda
- Intro to Nimib
- Nimib Speaking Hours
- NimibLand
- Updates from NimiSlides
- Intro to NimiBook
"""
template thankyouSlide* =
slide:
nbText """
## Thank you
"""
template slideNimibSpeakingHours* =
slide:
nbText """
## [Nimib Speaking Hours](https://github.com/pietroppeter/nimib/discussions/categories/nimib-speaking-hours)
"""
template slideNimibLand* =
slide:
nbText """
[github.com/nimib-land](https://github.com/nimib-land)
"""
template slideRefactorNbBlock* =
slide:
nbText """
[Refactor NbBlock](https://github.com/pietroppeter/nimib/pull/235)
"""
template slideQandA* =
slide:
nbText """
## Q&A
"""
when isMainModule:
myInit("index.nim")
titleSlide
agendaSlide
slide:
nimibIntro.all
slide:
slideNimibSpeakingHours
slideNimibLand
slideRefactorNbBlock
slide:
aboutNimiSlides.all
aboutNimiBook.all
thankyouSlide
slideQandA
nbSave