argonPageTemplate: Create an HTML version of the argonPage

Description Usage Arguments Note Author(s) Examples

View source: R/argonPage.R

Description

Create an HTML version of the argonPage

Usage

1
argonPageTemplate(filename = "index", path = getwd(), argonPage, view = TRUE)

Arguments

filename

HTML filename for instance, index.html.

path

Where to store the saved file. By default, getwd().

argonPage

Slot for argonPage.

view

Whether to preview the page in a web browser. TRUE by default.

Note

Do not forget to copy the inst folder of the package to the root of your website folder.

Author(s)

David Granjon, dgranjon@ymail.com

Examples

 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
if(interactive()){
 library(argonR)
 
 # generate the page
 example <- argonPage(
  title = "ArgonR Static Template",
  author =  "Somebody",
  description = "HTML Static Template",
  navbar = argonNavbar(id = "navbar"),
  footer = argonFooter(),
  # main content
  argonSection(),
  argonSection(),
  argonSection(),
  argonSection(),
  argonSection()
 )
 
 # create the path
 path <- getwd()
 
 # generate the static page
 argonPageTemplate(filename = "example", path = path, argonPage = example)
 
}

argonR documentation built on Dec. 1, 2019, 1:15 a.m.