-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathannouncements.html
More file actions
122 lines (103 loc) · 2.86 KB
/
announcements.html
File metadata and controls
122 lines (103 loc) · 2.86 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Announcements | GhostNet</title>
<script src="https://kit.fontawesome.com/eeb01edac2.js" crossorigin="anonymous"></script>
<style>
:root {
--glow: #00ff41;
--bg: #050505;
}
body {
background-color: var(--bg);
color: var(--glow);
font-family: 'Courier New', monospace;
margin: 0;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
border-bottom: 1px solid rgba(0, 255, 65, 0.1);
position: sticky;
top: 0;
background: #000;
backdrop-filter: blur(6px);
}
.nav-links a {
color: var(--glow);
text-decoration: none;
margin-left: 20px;
font-size: 13px;
letter-spacing: 1px;
}
.container {
max-width: 900px;
margin: 60px auto;
padding: 20px;
}
.section-title {
color: var(--glow);
padding: 10px 20px;
border-left: 4px solid var(--glow);
margin-bottom: 30px;
text-transform: uppercase;
}
.card {
border: 1px solid rgba(0, 255, 65, 0.2);
padding: 25px;
background: #080808;
line-height: 1.6;
}
.date {
color: #666;
font-size: 12px;
margin-bottom: 15px;
}
.back {
display: inline-block;
margin-top: 30px;
color: var(--glow);
text-decoration: none;
border: 1px solid var(--glow);
padding: 10px 15px;
transition: 0.3s;
}
.back:hover {
background: var(--glow);
color: #000;
box-shadow: 0 0 10px var(--glow);
}
</style>
</head>
<body>
<header class="header">
<div>
<span style="font-weight: bold; letter-spacing: 2px;">[ GHOSTNET ]</span>
</div>
<nav class="nav-links">
<a href="/"><i class="fa-solid fa-house-chimney"></i> HOME</a>
<a href="/announcements"><i class="fa-solid fa-bullhorn"></i> ANNOUNCEMENTS</a>
<a href="/login"><i class="fa-solid fa-arrow-right-to-bracket"></i> LOGIN</a>
</nav>
</header>
<div class="container">
<div class="section-title">
<i class="fa-solid fa-bullhorn"></i> Announcements
</div>
<!-- NEWEST FIRST -->
<div class="card">
<div class="date">May 2026</div>
<h3>Why is the old owner of GhostNet quitting?</h3>
<p>
NothingButTyler is stepping away from GhostNet. Ownership is being transferred
to br3h as development continues under new leadership.
</p>
<a href="/announcements/why-is-the-old-owner-quitting" class="back">Read more →</a>
</div>
</div>
</body>
</html>