-
Notifications
You must be signed in to change notification settings - Fork 5
/
coyuntura.Rmd
55 lines (46 loc) · 1022 Bytes
/
coyuntura.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
---
title: "Coyuntura"
description: |
Seguimiento estadístico y económico del sector turístico
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_coyuntura.csv"))
```
```{r projects, echo=FALSE}
projects %>%
bs4cards::cards(
# title = recurso,
text = description,
link = url,
image = src,
layout = "label-right",
label_colour = "white",
tags = paste("Todos;", tags),
footer = tags,
border_radius = 5,
width = 5
)
```