2018-08-03 16:07:12 +02:00
|
|
|
reusable = '''
|
2018-07-21 10:55:03 +02:00
|
|
|
|
|
|
|
# Reusable slides
|
|
|
|
|
|
|
|
Store markdown in a [data template](https://gohugo.io/templates/data-templates/) and reuse it in multiple sections or presentations.
|
|
|
|
|
|
|
|
<br>
|
|
|
|
<small>
|
2018-07-22 19:04:19 +02:00
|
|
|
navigate down to learn more
|
2018-07-21 10:55:03 +02:00
|
|
|
</small>
|
|
|
|
<br>
|
2018-07-22 19:13:39 +02:00
|
|
|
<a href="#" class="navigate-down">🔽</a>
|
2018-07-21 10:55:03 +02:00
|
|
|
|
|
|
|
---
|
|
|
|
|
2018-08-03 16:07:12 +02:00
|
|
|
Add a `example` key to data/home.toml:
|
2018-07-21 10:55:03 +02:00
|
|
|
|
2018-08-03 16:07:12 +02:00
|
|
|
```toml
|
2018-07-21 10:55:03 +02:00
|
|
|
example = "I'm a slide"
|
|
|
|
```
|
|
|
|
<br>
|
|
|
|
|
|
|
|
Set the `content` attribute to "home.example":
|
|
|
|
|
2018-08-03 16:07:12 +02:00
|
|
|
```markdown
|
|
|
|
{{< slide content="home.example" >}}
|
2018-07-21 10:55:03 +02:00
|
|
|
```
|
|
|
|
|
2018-07-22 11:50:50 +02:00
|
|
|
<br>
|
|
|
|
<small>
|
|
|
|
💡 Make sure to use a closing or self-closing shortcode.
|
|
|
|
</small>
|
|
|
|
|
2018-07-21 10:55:03 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
💡 Each data template entry can contain one or more slides, separated by `---` with newlines.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
💡 All other slide shortcode attributes (background, transition, etc.) can be used and will be applied to each slide in the data template entry.
|
|
|
|
|
|
|
|
'''
|