themen-hugo-35c3-reveal/exampleSite/content/home/body.md

44 lines
611 B
Markdown
Raw Normal View History

2018-04-26 17:25:43 -05:00
+++
weight = 20
+++
# reveal-hugo
Presentation content lives in `content/reveal`.
Or manually set the type.
```toml
+++
type = "reveal"
+++
```
---
# reveal-hugo
Presentation sections are ordered by `weight`.
```toml
+++
weight = 20
+++
```
---
# reveal-hugo
Protip: use `fragment` shortcode to make content appear in sequence.
```
{{%/* fragment */%}} One {{%/* /fragment */%}}
2018-04-26 18:14:26 -05:00
{{%/* fragment */%}} Two {{%/* /fragment */%}}
{{%/* fragment */%}} Three {{%/* /fragment */%}}
2018-04-26 17:25:43 -05:00
```
{{% fragment %}} One {{% /fragment %}}
{{% fragment %}} Two {{% /fragment %}}
{{% fragment %}} Three {{% /fragment %}}