-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdefault.html
More file actions
121 lines (112 loc) · 4.86 KB
/
Copy pathdefault.html
File metadata and controls
121 lines (112 loc) · 4.86 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel='icon' type='image/png' href='../assets/logos/vis.png' />
<title>{{ site.title }}</title>
<!-- add custom font -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
{% seo %} <link rel="stylesheet" href='{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}'>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
{% if site.logo %}
<a href="/"
><img
src="{{site.logo | relative_url}}"
alt="Logo: VisHub University of Edinburgh, Visual+Interactive Data"
/></a>
{% endif %}
<p><br/>{{ site.description | default: site.github.project_tagline }}</p>
<!-- add navigation -->
<a href="/">Home</a> -
<a href="/people">People</a> -
<a href="/projects">Projects</a>
<!-- <a href="/research">Research</a> -->
<br />
<a href="/publications">Publications</a> -
<!-- <a href="/tools">Tools</a> - -->
<a href="/teaching">Teaching</a> -
<a href="/news">News</a>
<br />
<!-- <a href="/resources">Resources</a> - -->
<a href="/outreach">Outreach</a> -
<a href="/jobs/index.html">Get in touch</a>
<!-- Twitter follow button -->
<br /><br />
<!-- <a href="https://vishub.net">https://vishub.net</a> -->
<!-- <a href="https://twitter.com/vishublab?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @vishublab</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> -->
<a href="https://www.linkedin.com/company/vishublab" target="_blank" class="linkedin">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" style="margin-right: 6px;" viewBox="0 0 24 24">
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.024-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667h-3.554V9h3.414v1.561h.049c.476-.899 1.637-1.848 3.368-1.848 3.598 0 4.264 2.368 4.264 5.448v6.291zM5.337 7.433c-1.144 0-2.067-.926-2.067-2.067 0-1.141.923-2.067 2.067-2.067s2.066.926 2.066 2.067c0 1.141-.922 2.067-2.066 2.067zm1.777 13.019H3.561V9h3.553v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.226.792 24 1.771 24h20.451C23.2 24 24 23.226 24 22.271V1.729C24 .774 23.2 0 22.225 0z"/>
</svg>
Follow us on LinkedIn
</a>
<!-- add logos -->
<br /><br />
<div>
<a href="https://www.ed.ac.uk/informatics" target="_blank">
<img src="/assets/logos/infed.png" width="200px" alt="Logo of the School of Informatics at the University of Edinburgh">
</a>
<br />
<a href="https://efi.ed.ac.uk/" target="_blank">
<img src="/assets/logos/efi_logo.png" width="200px" alt="Logo of Edinburgh Futures Institute">
</a>
<br />
<a href="https://www.designinformatics.org/" target="_blank">
<img src="/assets/logos/design.png" width="120px" alt="Logo of Design Informatics at the University of Edinburgh">
</a>
<!-- <br /> -->
<!-- <a href="https://www.ed.ac.uk/" target="_blank">
<img src="/assets/logos/uoe.png" width="160px" alt="Logo of the University of Edinburgh">
</a>
<br /> -->
</div>
</header>
<section>
{{ content }}
</section>
<footer>
<p>
<small>
Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a>
</small>
</p>
</footer>
</div>
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
{% if site.google_analytics %}
<script>
(function (i, s, o, g, r, a, m) {
i["GoogleAnalyticsObject"] = r;
(i[r] =
i[r] ||
function () {
(i[r].q = i[r].q || []).push(arguments);
}),
(i[r].l = 1 * new Date());
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m);
})(
window,
document,
"script",
"https://www.google-analytics.com/analytics.js",
"ga"
);
ga("create", "{{ site.google_analytics }}", "auto");
ga("send", "pageview");
</script>
{% endif %}
</body>
</html>