webpage: User interface

Description Usage Arguments See Also Examples

View source: R/page.R

Description

Begin creating a user interface. The webpage() function properly lays out a navigation bar and main section of elements.

Usage

1
webpage(..., nav = NULL)

Arguments

...

Any number of tag elements or named values added as children and attributes to the main section of the page.

nav

A navigation element, typically a call to navbar(), added at the top of the page, defaults to NULL.

See Also

Other layout functions: column(), fieldset(), flex(), navbar(), responsive

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
webpage(
  p("Pretty simple")
)

webpage(
  nav = navbar(),
  container(
    columns(
      column(),
      column()
    )
  )
)

yonder documentation built on Jan. 11, 2020, 9:35 a.m.