-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcontent.qmd
56 lines (45 loc) · 1.26 KB
/
content.qmd
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
---
title: "Content"
listing:
- id: content-future
contents:
- content_data_futura.yaml
type: grid
fields: [image, date, title, subtitle]
sort: "date desc"
categories: false
sort-ui: true
filter-ui: true
page-size: 100
- id: content-past
contents:
- content_data_passado.yaml
type: grid
fields: [image, date, title, subtitle]
sort: "date desc"
categories: false
sort-ui: true
filter-ui: true
page-size: 100
page-layout: full
title-block-banner: false
comments: false
toc: true
---
Presentations, workshops, and other content that I have created or participated in.
```{r}
#| echo: false
conteudo_futuro <- yaml::read_yaml("content_data_futura.yaml") |>
length()
conteudo_passado <- yaml::read_yaml("content_data_passado.yaml") |>
length()
```
## Future content
Here you can find links, slides and materials for **`r conteudo_futuro` future activities** that I will be participating in!
::: {#content-future}
:::
## Past content
Here you can find links, slides and materials for **`r conteudo_passado` past activities** that I have participated in **since 2018**!
::: {#content-past}
:::