-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (76 loc) · 2.77 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
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>riseros</title>
<link rel="stylesheet" href="website/styles.css">
</head>
<body>
<header>
<nav>
<h1 id="devlog_title"></h1>
<div class="menu-icon" onclick="toggleMenu()">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<ul id="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="#articles">Articles</a></li>
<li><a href="https://github.com/chauhansumitdev/riser-OS" target="_blank">GitHub</a></li>
</ul>
</nav>
</header>
<section id="dummy">
<div class="notice">
<p>Status : Paused (Last Updated : 15 November 2024)</p>
</div>
</section>
<section id="home" class="section">
<div class="container">
<h2>riseros docs/devlog</h2>
<p>Here you will find articles about the progress, ideas, and updates on riseros_</p>
</div>
</section>
<section id="articles" class="section">
<div class="container">
<h2>Articles</h2>
<div class="article" id="vga">
<h3>#2 : VGA Mode (15 Nov 2024)</h3>
<div class="content">
<img src="./gallery/vga.png" alt="image">
<p>
Working with VGA Mode
</p>
</div>
<a href="#vga">Read more</a>
</div>
<div class="article" id="hello_world">
<h3>#1 : Hello World (12 Nov 2024)</h3>
<div class="content">
<img src="./gallery/hello.png" alt="image">
<p>
Zero to first boot.
</p>
</div>
<a href="website/one.html">Read more</a>
</div>
<div class="article" id="init">
<h3>#0 : .init (12 Aug 2024)</h3>
<div class="content">
<p>
First Commit.
</p>
</div>
<a href="#init">Read more</a>
</div>
</div>
</section>
<footer>
<p>© 2024 chauhansumitdev. All Rights Reserved. <a href="https://github.com/chauhansumitdev/riser-OS" class="link" target="_blank">GitHub</a> <a href="" class="link">LinkedIn</a></p>
</footer>
<script src="website/script.js"></script>
</body>
</html>