-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.Rmd
60 lines (47 loc) · 1.1 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
53
54
55
56
57
58
59
---
title: "Biblioteca"
description: |
Colección de Documentos de Trabajo y Publicaciones del Sistema de Información Turística de la Argentina (SINTA)
site: distill::distill_website
preview: https://bitacora.yvera.tur.ar/posts/bienvenida/sinta.png
---
<!-- 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)
library(tidyverse)
# Read in projects csv file
projects <- readr::read_csv(here::here("content", "recursos.csv")) %>%
select(-seccion)
```
```{r projects, echo=FALSE}
projects %>%
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
)
```