Skip to content

Commit

Permalink
agrego cantidad de episodios y películas, rescribo texto del sitio
Browse files Browse the repository at this point in the history
  • Loading branch information
vhgauto committed Oct 5, 2024
1 parent 9119935 commit 62283f3
Show file tree
Hide file tree
Showing 3 changed files with 578 additions and 23 deletions.
572 changes: 559 additions & 13 deletions index.html

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,31 +38,31 @@ source("scripts/soporte.R")
![](img/logo.jpeg)
:::

::: {.column width="5%"}
::: {.column width="15%"}
:::

::: {.column width="50%"}
::: {.column width="35%"}
<div style='font-size:1.25em'>
[<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 2023 crearon el [`r cc`](https://hoytrasnoche.com/vip/), con episodios exclusivos.
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.

En total han generado `r ht_dias_label` días y `r ht_horas_label` de contenido.
La presente tabla interactiva contiene los episodios <i>tradicionales</i>, en los que se discute una (o múltiples) película(s).

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 del [`r cc`](https://hoytrasnoche.com/vip/).
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/).

</div>
:::

::: {.column width="5%"}
::: {.column width="15%"}
:::

::: {.column width="20%"}
::: {.column width="15%"}
<div style='font-size:1.25em'>
<p style='text-align:right;'>Autor: <b>Víctor Gauto</b><br>
`r redes$label[1]` `r redes$label[2]` `r redes$label[3]` `r redes$label[4]`<br><br>
[Ver en `r icono_github`](`r link_repositorio`) </p>
</div>
:::

::::
Expand Down
11 changes: 10 additions & 1 deletion scripts/soporte.R
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ d <- read_csv("datos/datos.csv", show_col_types = FALSE) |>
tipo
)

# cantidad de contenido total, en días
# cantidad de contenido total, en días y horas
ht_contenido_ht <- sum(spotify$duracion_ms) / 1000 / 3600 / 24
ht_contenido_cc <- sum(country_club$duracion_ms) / 1000 / 3600 / 24
ht_contenido <- ht_contenido_ht + ht_contenido_cc
Expand All @@ -200,6 +200,15 @@ if (ht_horas == 1) {
ht_horas_label <- glue("<b style='color:{cr}'>{ht_horas}</b> horas")
}

# cantidad de episodios y películas
ht_episodios <- distinct(datos, episodio) |>
nrow()
ht_episodios_label <- glue("<b style='color:{cr}'>{ht_episodios}</b>")

ht_peliculas <- distinct(datos, pelicula, pelicula_año) |>
nrow()
ht_peliculas_label <- glue("<b style='color:{cr}'>{ht_peliculas}</b>")

# funciones ---------------------------------------------------------------
# las funciones incluyen un estilo condicional si pertenecen o no
# al Country Club
Expand Down

0 comments on commit 62283f3

Please sign in to comment.