-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
51 lines (40 loc) · 1.78 KB
/
test.html
File metadata and controls
51 lines (40 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>My Projects</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="Stuart Mouse">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="images/randomizer/icon.ico">
<link rel="stylesheet" type="text/css" href="/style.css">
</head>
<body>
<canvas id="canvas" class="bg-wasm-canvas hide" oncontextmenu="event.preventDefault()"></canvas>
<!-- TODO: could figure out some way to `defer part of the output html for things like scripts that need to be run at end of block, or which should only be included once. -->
<!-- On a similar note, we should figure out a better way to scope certain scripts so that they don't refer to things outside the template unintentionally. -->
<script type="text/javascript">
var Module = {};
Module.canvas = document.getElementById('canvas');
</script>
<script async type="text/javascript" src="/bg_wasm.js"></script>
<div class="content">
<div class="header">
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="/index.html">Home</a></li>
<li><a href="/gon-parsers.html">GON Parsers</a></li>
<li><a href="/game-dev.html">Game Dev</a></li>
<li><a href="/blog/blog.html">Blog Posts</a></li>
</ul>
</div><h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<pre><code class="language-c">int main(int argc, char** argv) {
printf("Hello, World!");
}
</code></pre>
<hr>
<p>asdlkfj</p>
</div> </body> </html>