-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
29 lines (24 loc) · 1.62 KB
/
index.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
<!doctype html>
<html lang="en" />
<head>
<meta charset="utf-8" />
<title>Oration - Test Index Page</title>
<meta name="description" content="A root page for a blog which Oration will service" />
<meta name="author" content="Tim DuBois" />
<link rel="stylesheet" href="css/oration.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.6.0/katex.min.css" integrity="sha256-jyTNdvrzQ6apVgu4tZoAUKxLo5W+oN47Td9rTdFLrBs=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.9.0/themes/prism.css" integrity="sha256-P0Hbxu6mXtsN1vgoz5E3TyC6//DF7pPi7VT97mygYgU=" crossorigin="anonymous" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.9.0/prism.min.js" integrity="sha256-hK55yYjZp3vXqUhowkWYVaoavcWSYRR6fE8sgHqyt5A=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.9.0/components/prism-rust.min.js" integrity="sha256-sMEzcAp7rur4qCvzfsFa734SJVJtH6xxN0CGRoPXlsA=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.9.0/components/prism-makefile.min.js" integrity="sha256-pbm9rQGN4Ore8f63Nc0XohO/ndkqmaCkiM+t++tZS6s=" crossorigin="anonymous"></script>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<h1>Index page</h1>
<p>Here are a few posts that you might enjoy commenting on:</p>
<p><a href="post-1.html#comments">Post 1</a> - x Comments</p>
<p><a href="post-2.html#comments">Post 2</a> - x Comments</p>
</body>
</html>