forked from programminghistorian/ph-submissions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
47 lines (36 loc) · 2.14 KB
/
header.html
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
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- Mobile viewport optimized: h5bp.com/viewport -->
<meta name="viewport" content="width=device-width">
<link href="https://programminghistorian.org/css/font-awesome-4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href='https://programminghistorian.org/feed.xml' rel='alternate' type='application/atom+xml'>
<meta name="robots" content="Noindex">
<title>{{ page.title }} | {{ site.name }}</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<link rel="stylesheet" href="https://programminghistorian.org/css/github.css">
<link rel="stylesheet" href="https://programminghistorian.org/css/style.css">
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://programminghistorian.org/js/ext_links.js"></script>
<script type="text/javascript" src="https://programminghistorian.org/js/header_links.js"></script>
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<style>
article {
counter-reset: paragraph;
}
.content p:after {
position: absolute;
right: 0.6em;
color: #CCC;
content: "\00b6\00a0" counter(paragraph);
counter-increment: paragraph;
}
</style>
</head>