Description Usage Arguments Author(s) Examples
Build an argon footer
1 | argonFooter(..., has_card = FALSE, status = NULL, gradient = FALSE)
|
... |
Footer content. |
has_card |
Enable card rendering in the footer. FALSE by default. |
status |
Footer status color. See https://demos.creative-tim.com/argon-design-system/docs/foundation/colors.html. |
gradient |
Whether to apply a gradient. FALSE by default. |
David Granjon, dgranjon@ymail.com
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | if(interactive()){
library(argonR)
argonFooter(
has_card = FALSE,
argonContainer(
size = "lg",
argonRow(
argonColumn(
width = 6,
argonIconWrapper(
iconTag = argonIcon("atom"),
size = "lg",
status = "success",
shadow = TRUE,
hover_shadow = TRUE
),
argonH1(
display = 3,
"Insert anything in the footer"
),
argonLead(
"The Arctic Ocean freezes every winter and much of
the sea-ice then thaws every summer, and that process
will continue whatever"
)
),
argonColumn(
width = 6,
argonCarousel(
width = 12,
id = "carousel2",
argonCarouselItem(
src = "http://www.72pxdesigns.com/wp-content/uploads/2017/06/preview-814162.png",
active = TRUE
),
argonCarouselItem(
src = "http://www.72pxdesigns.com/wp-content/uploads/2017/06/preview-814162.png",
active = FALSE
)
)
)
)
)
)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.