Skip to content

Commit 8dd59db

Browse files
author
Илья Глазунов
committed
added index page for github pages suip manifest
1 parent f6a85c8 commit 8dd59db

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

pages/index.html

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>SUIP - Simple Unified Internet Protocol</title>
7+
<style>
8+
body {
9+
max-width: 700px;
10+
margin: 40px auto;
11+
padding: 0 20px;
12+
font-family: Georgia, serif;
13+
line-height: 1.7;
14+
color: #222;
15+
}
16+
h1 { text-align: center; margin-bottom: 5px; }
17+
h2 { margin-top: 40px; border-bottom: 1px solid #ccc; padding-bottom: 5px; }
18+
.subtitle { text-align: center; color: #666; margin-bottom: 40px; }
19+
ul { padding-left: 25px; }
20+
li { margin: 8px 0; }
21+
a { color: #0066cc; }
22+
a:hover { color: #0099ff; }
23+
footer { margin-top: 60px; padding-top: 20px; border-top: 1px solid #ccc; color: #666; font-size: 0.9em; text-align: center; }
24+
</style>
25+
</head>
26+
<body>
27+
28+
<h1>SUIP</h1>
29+
<p class="subtitle">Simple Unified Internet Protocol</p>
30+
31+
<p>A minimalist protocol designed to bring back simplicity to the web. SUIP is a text-based protocol that focuses on content delivery without the bloat of modern web technologies.</p>
32+
33+
<h2>Documentation</h2>
34+
35+
<ul>
36+
<li><a href="suip.html">SUIP Manifesto (English)</a></li>
37+
<li><a href="suip-ru.html">Манифест SUIP (Русский)</a></li>
38+
</ul>
39+
40+
<h2>Features</h2>
41+
42+
<ul>
43+
<li>Lightweight — No JavaScript, minimal CSS</li>
44+
<li>Content-first — XML-based document structure</li>
45+
<li>Simple — Easy to implement and understand</li>
46+
<li>Fast — Minimal overhead, quick page loads</li>
47+
<li>Cross-platform — Works everywhere</li>
48+
</ul>
49+
50+
<footer>
51+
<p>© 2026 SUIP Team</p>
52+
</footer>
53+
54+
</body>
55+
</html>

0 commit comments

Comments
 (0)