-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbase.html
More file actions
executable file
·31 lines (26 loc) · 889 Bytes
/
base.html
File metadata and controls
executable file
·31 lines (26 loc) · 889 Bytes
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
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
{% seo %}
<meta name="twitter:card" content="summary_large_image" />
<link rel="stylesheet" href="/css/styles.css" />
<link rel="stylesheet" media="print" href="/css/print.css" />
</head>
<body>
{% include _includes/default-header.html %}
{{ content }}
{% include _includes/default-footer.html %}
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<script src="/js/scripts.js"></script>
{% if page.twitter_moment %}
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
{% endif %}
{% if page.flowcell-select %}
<script src="/js/flowcell-select-scripts.js"></script>
{% endif %}
</body>
</html>