-
Notifications
You must be signed in to change notification settings - Fork 5
/
la-ruta-natural.Rmd
61 lines (49 loc) · 1.15 KB
/
la-ruta-natural.Rmd
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
---
title: "La Ruta Natural"
description: |
Colección de Documentos de Trabajo y Publicaciones de la Subsecretaría de Desarrollo Estratégico relativos a La Ruta Natural
output: distill::distill_article
---
<!-- Remove margin under images -->
<style>
d-article img {
margin-bottom: 0px;
}
.btn-primary {
background-color: #74a08a;
color: #FFFFFF;
padding: 3px 5px 3px 5px;
margin: 0 2px 0 2px;
border-radius: 5px; /* Rounded edges */
border: 0px;
}
.btn-primary:hover {
background-color: #8a74a0;
color: #FFFFFF;
}
</style>
```{r setup, echo=FALSE}
knitr::opts_chunk$set(echo = FALSE)
#source(file.path("R", "functions.R"))
library(tidyverse)
# Read in projects csv file
projects <- readr::read_csv(here::here("content", "recursos-ruta-natural.csv")) %>%
select(-seccion)
```
```{r projects, echo=FALSE}
projects %>%
arrange(tags, desc(fecha)) %>%
bs4cards::cards(
# title = recurso,
text = description,
link = url,
image = src,
#layout = "label-below",
label_colour = "white",
tags = paste("Todos;", tags),
footer = tags,
border_radius = 5,
width = 4,
breakpoint = 2
)
```