-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
42 lines (39 loc) · 1.25 KB
/
about.html
File metadata and controls
42 lines (39 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8" />
<meta name="keywords" content="" />
<title>about</title>
<link rel="icon" type="image/x-icon" href="images/favicon.jpg">
<link rel="stylesheet" href="main.css" />
</head>
<body>
<p id="wah"></p>
<script type="text/javascript" src="js/body.js" defer></script>
<div class="container">
<p><strong>ABOUT</strong></p>
<pre><code>
<b>site content:</b>
mods created in the past years released on nexus
code created in the past years released on github
music created in the past years to be released soon
list of favorites film, music, games and documentaries
list of url's to various resources
gallery (for slideshow various sources)
audioplayer with playlist
webgl aka shadertoy screensaver and browser
text to pdf or markdown view and conversion
generate charts of lists
<b>release notes site:</b>
<div id="content"></div>
<script>
document.addEventListener('DOMContentLoaded', function() {
getjsonf('thrive4github.nfo', function(data) {
document.getElementById('content').innerHTML = data;
});
});
</script>
</code></pre>
</div>
</body>
</html>