-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog_template.html
39 lines (35 loc) · 1.18 KB
/
blog_template.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
<!DOCTYPE html>
<html>
<head>
<title>Tupoiu</title>
<link rel="stylesheet" type="text/css" href="main.css"/>
</head>
<body>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<!-- and it's easy to individually load additional languages -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/haskell.min.js"></script>
<canvas id="shader"></canvas>
<div class="foreground"><div class="transpanel">
<script>hljs.highlightAll();</script>
<h1>Blogs</h1>
<input id="searchbox" placeholder="Search text..."></input>
<div id="searchresultsbox"></div>
<div id="blog-container">
<div id="blog-contents">
###BLOG-CONTENTS###
</div>
<div id="blogs">
###BLOGS###
</div>
</div>
<div class="eop">
<a href="guitar.html" id="guitar-link">Guitar</a>
<a href="visuals.html">Visuals</a>
</div>
<p id="footer">© Peter Job 2022</p>
</div></div>
</body>
<script src="typescript/dist/text_search.js"></script>
<script src="typescript/dist/shader-bg.js"></script>
</html>