-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.qmd
188 lines (147 loc) · 4.09 KB
/
index.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
---
title: "Buscador Hoy Trasnoche"
format:
html:
include-in-header:
- text: |
<link rel="shortcut icon" href="img/favicon.png" />
backgroundcolor: "#000000"
fontcolor: "#FFFFFF"
fontsize: 17px
mainfont: Ubuntu
link-external-newwindow: true
theme:
- extras/mis_estilos.scss
margin-left: 20px
margin-right: 20px
embed-resources: true
editor_options:
chunk_output_type: console
execute:
echo: false
warning: false
---
```{r inicio}
#| output: false
Sys.setlocale(locale="es_ES.UTF-8")
source("scripts/datos.R")
source("scripts/soporte.R")
```
::::: column-screen
:::: {.columns .v-center-container}
::: {.column width="20%"}
![](img/logo.jpeg)
:::
::: {.column width="10%"}
:::
::: {.column width="35%"}
<div style='font-size:1.25em'>
<br>
[<b>Fiorella Sargenti</b>](https://www.instagram.com/fiosargenti) y [<b>Santigo Calori</b>](https://www.instagram.com/sancalori/) conducen [`r ht`](https://open.spotify.com/show/6C4MdNWQSPhmzBlIVau30e) desde 2017, el único y mejor podcast <span style='text-decoration: line-through; text-decoration-color:`r cr`;'>de cine</span> del mundo.
<!-- En total han generado `r ht_dias_label` días y `r ht_horas_label` de contenido, con `r ht_episodios_label` episodios y `r ht_peliculas_label` películas. -->
La presente tabla interactiva contiene los episodios <i>tradicionales</i>, en los que se discute una (o múltiples) película(s).
Las entradas en <span style='color:`r ca`'>dorado</span> indican que se trata de un episodio exclusivo del [`r cc`](https://hoytrasnoche.com/vip/).
<br>
</div>
:::
::: {.column width="10%"}
:::
::: {.column width="25%"}
<div style='font-size:1.25em; text-align: left'>
<span style='font-family: JetBrains Mono'>
`r ht_dias_label` días y `r ht_horas_label` de contenido<br>
`r ht_episodios_label` episodios<br>
`r ht_peliculas_label` películas
</span>
<br>
Autor: <b>Víctor Gauto</b> `r redes$label[5]` `r redes$label[1]` `r redes$label[2]` `r redes$label[3]` `r redes$label[4]`
<br>
[<span style="color: `r cg4`">Ver en `r icono_github`</span>](`r link_repositorio`)
</div>
:::
::::
:::::
```{r tabla}
#| column: screen
source("scripts/tabla.R")
r
```
<br> <br>
::: column-body-outset
::: {.columns .v-center-container}
::: {.column width="30%"}
![](img/logo.jpeg)
:::
::: {.column width="10%"}
:::
::: {.column width="60%"}
<div style='font-size:1.25em'>
<p style='text-align:right;'>Autor: <b>Víctor Gauto</b><br>
`r redes$label[5]` `r redes$label[1]` `r redes$label[2]` `r redes$label[3]` `r redes$label[4]`<br><br>
[<span style="color: `r cg4`">Ver en `r icono_github`</span>](`r link_repositorio`)</p>
</div>
:::
:::
:::
<br>
<br>
<br>
<br>
<center style='color:`r cg4`'>Este sitio web, su desarrollo y mantenimiento es un proyecto personal. No estoy involucrado de ninguna manera con el podcast ni con sus conductores.</center>
<br>
<br>
<br>
<br>
::: {.column-screen}
<span style='font-family:JetBrains Mono;'>`r ahora_label`</span>
:::
<!-- botón para ir arriba -->
```{=html}
<!DOCTYPE html>
<html>
<head>
<style>
#miBoton {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 9999; /* aseguro que el botón esté encima de la tabla */
border: none;
outline: none;
background-color: `r cr`;
color: `r cb`;
cursor: pointer;
padding: 15px;
border-radius: 50%; /* el botón es circular */
}
/* estilo del botón al pasar el mouse */
#miBoton:hover {
background-color: `r ca`;
color: `r cn`;
}
</style>
</head>
<body>
<button onclick="topFunction()" id="miBoton">`r icono_flecha`</button>
<script>
// botón
var mybutton = document.getElementById("miBoton");
// cuando bajo 500px aparece el botón
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 500 || document.documentElement.scrollTop > 500) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// cuando hago click en el botón se mueve hacia el tope del sitio
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</body>
</html>
```