LatinR / web-LatinR2024

Sitio web LatinR2024
https://latinr.org
1 stars 12 forks source link

Update keynote speakers #37

Closed beatrizmilz closed 3 months ago

beatrizmilz commented 4 months ago

Do we have the information for the Keynote Speakers? Update in: https://github.com/LatinR/latinrweb-v2/blob/main/R/generar-info-keynotes.R

beatrizmilz commented 3 months ago

From the email:

Estamos mas que felices porque en esta edición tendremos a Will Landau, creador de {targets} y a Julia Silge, cientifica de datos e ingeniera de software en Posit, como disertantes principales.

beatrizmilz commented 3 months ago

Photos: https://avatars.githubusercontent.com/u/1580860?v=4 https://github.com/juliasilge.png

beatrizmilz commented 3 months ago

The cards are generated with bslib::card(), but I'm not sure why it does not accept HTMl in the card body. I was not able to add the links in it. I tried: Markdown, HTML, and htmltools::a(), and none of them worked! Does anyone know how to add links in the body of the card?

  bslib::card(
    full_screen = FALSE,
    bslib::card_header(tab$name, class = "card-header-keynote"),
    bslib::card_image(
      file = here::here(tab$img),
      href = tab$href,
      border_radius = "all"
    ),
    bslib::card_body(tab[[col_info]], ),
  )