-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (42 loc) · 1.23 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="/css/stylesheet.css" />
<link rel="icon" type="image/x-icon" href="/images/favicon.png" />
<title>Home</title>
</head>
<body>
<div class="header">
<h1>NecRaul's website</h1>
<h2>My screams into the void</h2>
</div>
<div class="navigation">
<a class="navitem" href="/kuroneko.html">Kuroneko</a>
<a class="navitem" href="/about.html">About Me</a>
<a class="navitem" href="/">Home</a>
<a class="navitem" href="/posts.html">Ramblings</a>
<a class="navitem" href="/3x3.html">3x3 stuff</a>
</div>
<hr />
<div class="postheader">
<h2>Recent Ramblings</h2>
<ul id="postList"></ul>
</div>
<br />
<hr />
<div class="footer">
<a class="navitem" href="https://github.com/NecRaul" target="_blank"
>Github</a
>
<a class="navitem" href="/feed.xml" target="_blank">RSS</a>
<a
class="navitem"
href="https://github.com/NecRaul/kuroneko-dev"
target="_blank"
>Source</a
>
</div>
<script type="text/javascript" src="/javascript/index.js"></script>
</body>
</html>