-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.R
More file actions
73 lines (60 loc) · 2.38 KB
/
ui.R
File metadata and controls
73 lines (60 loc) · 2.38 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
shinyUI(
navbarPage(
id = "nav", windowTitle = "Inflation Dashboard - FGV | IBRE",
title =a(href = "http://portalibre.fgv.br", target="_blank", img(src = "logoFGVbranco.png", style = "padding-bottom:20px; height:45px")),
inverse = F, fluid = F, theme = shinytheme("yeti"),footer = HTML("<hr></hr><center><img src = 'logoFGV.png' style = 'height:40px'></img><center> <p style = 'text-align:center; font-size: 95%'>Copyright 2018 IBRE - Todos os direitos reservados</p>"),
# página inicial ------------------------------------
tabPanel(
"Início"
),
# menu: inflation dashboard -------------------------------------------------------------
tabPanel(
"Painel da Inflação"
),
# menu: Análise IPC ----------------------------------------------------------------------
navbarMenu(
"Análise da Inflação",
# x --- Núcleos ------------------------------------------------------------------------
tabPanel(
"Núcleo da Inflação"
),
# x --- Índice de Difusão --------------------------------------------------------------
tabPanel(
"Índices de Difusão"
),
# x --- Inflação no Mundo --------------------------------------------------------------
tabPanel(
"Inflação no Mundo"
),
# menu: Meu IPC --------------------------------------------------------------------------
tabPanel(
"Sua inflação"
)
), # fim menu: Análise IPC
# menu: Expectativas ---------------------------------------------------------------------
navbarMenu(
"Expectativas",
tabPanel(
"Expectativas de Mercado"
),
tabPanel(
"Expectativas dos Consumidores"
),
tabPanel(
"Expectativas na Web"
)
),
# menu: Descomplicando --------------------------------------------------------------------
tabPanel(
"Descomplicando"
),
# menu: Nossas pesquisas -----------------------------------------------------------------
tabPanel(
"Nossas Pesquisas"
),
# menu: A Equipe -------------------------------------------------------------------------
tabPanel(
"Pesquisadores"
)
)
)