-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.jinja
More file actions
85 lines (76 loc) · 3.51 KB
/
index.jinja
File metadata and controls
85 lines (76 loc) · 3.51 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
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Health Informatics | King's College London</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/hi.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row" style="margin-top: 10%">
<div class="four columns">
<h6>king's college london health informatics (kclhi)</h6>
<p>targeting, developing and evaluating digital health interventions</p>
<p>projects:</p>
</div>
</div>
{% for project in projects %}
{% if loop.index0 % 2 == 0 %}
<div class="row">
{% endif %}
<div class="one-half column">
<div class="tooltip">
{% if project.url %}
<a href="{{ project.url }}">
{% endif %}
{% if project.logo %}
<img src="logos/{{ project.logo }}" style="background-color:#{{ colours[loop.index % colours|length] }}"/>
{% else %}
<div class="text-only-project">
<img src="images/blank.png" style="background-color:#{{ colours[loop.index % colours|length] }}"/>
<div class="centered">{{ project.name }}</div>
</div>
{% endif %}
<span class="tooltiptext">{{ project.description }}</span>
{% if project.url %}
</a>
{% endif %}
</div>
{% if loop.index0 % 2 == 0 %}
</div>
{% else %}
</div>
</div>
{% endif %}
{% endfor %}
<div class="row">
<div class="twelve columns" style="margin-top: 5%; margin-bottom: 10%; text-align: center;">
<iframe src="https://ghbtns.com/github-btn.html?user=kclhi&type=follow&count=false&size=large" frameborder="0" scrolling="0" width="150" height="30" title="Follow @kclhi on GitHub"></iframe>
</div>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>