-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (76 loc) · 3.78 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<html lang="en-GB">
<head>
<!--http://www.iana.org/assignments/media-types/media-types.xhtml#image-->
<!--<script src="assets/js/App.js" defer></script>-->
<meta charset="UTF-8">
<meta name="description" content="This is Luke Shore's Blog Website">
<!--<meta http-equiv="Content-Security-Policy" content="object-src 'none';script-src https://pheonixfirewingz.github.io/ https://cdnjs.cloudflare.com/ajax/libs/gl-matrix/2.8.1/; style-src https://pheonixfirewingz.github.io/ https://fonts.googleapis.com/;">-->
<meta name="keywords" content="Blog, Programming">
<meta name="author" content="Luke Shore">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#D6D6D6" />
<link rel="apple-touch-icon" href="assets/images/app/icon-192x192.png">
<title>Luke Shore's Blog</title>
<link rel="icon" href="assets/images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="assets/styles/style.css" type="text/css">
<link rel="manifest" href="manifest.json">
<script>navigator.serviceWorker.register("sw.js")</script>
</head>
<body>
<header>
<div id="menu">
<img alt="Logo" height="2000" width="2000" src="assets/images/logo.svg" type="image/svg+xml">
<ol>
<li><a href="#">Projects</a></li>
<li><a href="#">Bio</a></li>
</ol>
</div>
</header>
<div id="welcome">
<canvas id="openGL"></canvas>
<div class="widget">
<h1>Welcome To My Blog</h1>
<p>Checkout My Projects</p>
</div>
</div>
<div id="projects_cards_wheel">
<div id="card_animation">
<div class="card">
<img class="card_logo" alt="LibOS Logo" height="50" width="50" src="/assets/images/placeholder.png" type="image/png">
<h1 class="card_title">LibOS - <a href="libos.html">Operating System Abstraction</a></h1>
<p class="card_about">The goal of the LunaLux LibOS is to act as an abstraction layer for native Operating System APIS with a platform Vulkan Like Agnostic API to make cross platform development easier to achieve.</p>
</div>
<div class="card" id="card_two">
<img class="card_logo" alt="LibLunaScript Logo" height="50" width="50" src="/assets/images/placeholder.png" type="image/png">
<h1 class="card_title">LibLunaScript - <a href="libos.html">Scripting Language</a></h1>
<p class="card_about">This is the Compiler & LSVM For LunaLuxEngine's scripting Engine.</p>
</div>
<div class="card" id="card_three">
<img class="card_logo" alt="LibOS Logo" height="50" width="50" src="/assets/images/placeholder.png" type="image/png">
<h1 class="card_title">LibOS - <a href="libos.html">Operating System Abstraction</a></h1>
<p class="card_about">The goal of the LunaLux LibOS is to act as an abstraction layer for native Operating System APIS with a platform Vulkan Like Agnostic API to make cross platform development easier to achieve.</p>
</div>
<div class="card" id="card_four">
<img class="card_logo" alt="LibOS Logo" height="50" width="50" src="/assets/images/placeholder.png" type="image/png">
<h1 class="card_title">LibOS - <a href="libos.html">Operating System Abstraction</a></h1>
<p class="card_about">The goal of the LunaLux LibOS is to act as an abstraction layer for native Operating System APIS with a platform Vulkan Like Agnostic API to make cross platform development easier to achieve.</p>
</div>
</div>
</div>
<footer>
<div id="texttop"></div>
<div id="projects">
<h3>Projects</h3>
</div>
<div id="colum_two">
<h3>Other</h3>
</div>
<div id="copyright">
<h3>Copyright © 2023 <a href="https://pheonixfirewingz.github.io/">pheonixfirewingz.github.io</a>. All rights reserved.</h3>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gl-matrix/2.8.1/gl-matrix-min.js" defer></script>
<script src="assets/js/Renderer.js" defer></script>
</body>
</html>