Bulma study case: Minimal page template

  1. Transform the starter page template in to R format using charpente::html_2_R(template_html, path = "/html"):
tags$html(
  tags$head(
    tags$meta(charset = "utf-8"),
    tags$meta(
      name = "viewport",
      content = "width=device-width,
    initial-scale=1"
    ),
    tags$title("Hello Bulma!"),
    tags$link(
      rel = "stylesheet",
      href = "https://cdn.jsdelivr.net/
      /bulma.min.css"
    )
  ),
  tags$body(tags$section(
    class = "section",
    tags$div(
      class = "container",
      tags$h1(
        class = "title",
        "Hello World"
      ),
      tags$p(
        class = "subtitle",
        "My first website with",
        tags$strong("Bulma"),
        "!"
      )
    )
  ))
)