-
Notifications
You must be signed in to change notification settings - Fork 10
/
footer.py
75 lines (73 loc) · 3.66 KB
/
footer.py
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
74
75
import dash_html_components as html
import dash_bootstrap_components as dbc
def Footer():
footer = html.Footer(
dbc.Row(
[
dbc.Col(
[
html.Img(src="assets/images/logo_black.png", height="70px")
],
),
dbc.Col(
html.A(
dbc.Row(
[
dbc.Col(html.Img(src="assets/images/mit.png", height="60px")),
dbc.Col(html.Img(src="assets/images/orc.png", height="70px")),
],
no_gutters=True,
),
href="https://orc.mit.edu/",
),
),
dbc.Col(
html.Div([
html.A([
html.Img(
src='assets/images/icons/github.png',
style={
'height' : '40px',
'width' : '40px',
'position' : 'relative',
'marginTop' : 15,
'marginRight': 15,
'paddingTop' : 0,
'paddingRight' : 0
}
)
], href='https://github.com/COVIDAnalytics'),
html.A([
html.Img(
src='assets/images/icons/email.png',
style={
'height' : '40px',
'width' : '40px',
'position' : 'relative',
'marginTop' : 15,
'marginRight': 15,
'paddingTop' : 0,
'paddingRight' : 0
}
)
], href='/contact'),
html.A([
html.Img(
src='assets/images/icons/twitter.png',
style={
'height' : '40px',
'width' : '40px',
'position' : 'relative',
'marginTop' : 15,
'paddingTop' : 0,
'paddingRight' : 0
}
)
], href='https://twitter.com/covid_analytics'),
])
),
],
),
id="footer",
)
return footer