-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
37 lines (32 loc) · 1.22 KB
/
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
# This is the user-interface definition of a Shiny web application.
# You can find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com
#
library(markdown)
library(htmltools)
library(DT)
library(shiny)
library(shinyBS)
library(shinyjs)
library(colourpicker)
source("uiAboutPage.R")
source("uiPCAPage.R")
source("uiHelpPage.R")
source("uiLegalPage.R")
shinyUI(tags$div(useShinyjs(),
list(tags$head(HTML('<link rel="icon", href="icon.png",
type="image/png" />'))),
div(style="padding: 1px 0px; width: '100%'",
titlePanel(
title="", windowTitle="PCAGO"
)
),
navbarPage(img(src = "logo.svg", class = "header-logo"),
tabPanel("About", value = "about", uiAboutPage()),
tabPanel("Analyze", value = "analyze", uiPCAPage()),
tabPanel("Help", value = "help", uiHelpPage()),
tabPanel("Impressum", value = "legal", uiLegalPage()),
id = "main.nav",
theme = "style.css"),
tags$script(I(includeText("scripts/globalBody.js")))))