-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.R
44 lines (40 loc) · 1.95 KB
/
contacts.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
########################################################
# Developed by S. Alaimo (alaimos at dmi . unict . it) #
# Released under licence GNU GENERAL PUBLIC LICENSE 3 #
# Date: 2015-06-01 #
########################################################
build.single.address <- function (name, dept, uni, mail) {
return (tags$address(
tags$span(class="text-info", strong(name)),
br(),
dept,
br(),
uni,
br(),
tags$a(href=paste0("mailto:", mail), mail)
))
}
build.contacts.panel <- function () {
return (tabPanel("Contacts", icon=icon("envelope"),
titlePanel("Contacts"),
fluidRow(column(12, "For bugs reporting, please send an email to:",
tags$a(href="mailto:alaimos@dmi.unict.it", "alaimos@dmi.unict.it"),
style="text-align: center")),
fluidRow(column(12, h3("Authors"))),
fluidRow(
column(12,
build.single.address("S. Alaimo",
"Dept. of Mathematics and Computer Science",
"University of Catania",
"alaimos@dmi.unict.it"),
build.single.address("R. Giugno",
"Dept. of Clinical and Molecular Biomedicine",
"University of Catania",
"giugno@dmi.unict.it"),
build.single.address("A. Pulvirenti",
"Dept. of Clinical and Molecular Biomedicine",
"University of Catania",
"apulvirenti@dmi.unict.it"))
)
))
}