forked from dnme-minturdep/dnme_apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
54 lines (44 loc) · 1.04 KB
/
index.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
---
title: TABLEROS y REPORTES
description: |
El contenido acá listado busca facilitar el acceso a datos mediante reportes y tableros interactivos de turismo en Argentina
site: distill::distill_website
---
<!-- 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.csv"))
```
```{r projects, echo=FALSE, layout="l-body-outset"}
projects %>%
bs4cards::cards(
# title = recurso,
text = description,
link = url,
image = src,
label_colour = "white",
tags = paste("Todos;", tags),
footer = tags,
border_radius = 5
)
```