-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.r
47 lines (41 loc) · 992 Bytes
/
ui.r
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
46
47
################################################################################
# Shiny UI-Home
#
# (c) 2019 Kiewisz
# This code is licensed under GPL V3.0 license (see LICENSE.txt for details)
#
# Author: Robert Kiewisz
# Created: 2020-10-05
################################################################################
# Shiny UI-Home ---------------------------------------------------------------
fluidPage(
includeCSS("www/css/style.css"),
useShinyalert(),
navbarPage(
title = App_title, # see Global.R
collapsible = TRUE,
inverse = TRUE,
position = "fixed-top",
id = "innavbar",
selected = "Home",
# footer = footnoteUI("footnote"),
tabPanel(
"GetStarted",
GetStarted_UI("Home")
),
tabPanel(
"Home",
fluidRow(
homeUI("Home")
)
),
tabPanel(
"Wiki",
fluidRow()
),
tabPanel(
"About",
fluidRow()
)
)
)