mirror of
https://github.com/restincode/restincode.git
synced 2026-06-11 08:15:18 +02:00
Replace plain text cards with tombstone background images that swap from gray to green on hover. Add header navigation with About, Contribute, and Contact links. Create about page with site description. Simplify header layout and improve text styling for card names.
67 lines
2.4 KiB
HTML
67 lines
2.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>About - Rest In Code</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta
|
|
name="author"
|
|
content="Site by Connie 'Sunfire' Hill; Content by Rest In Code contributors"
|
|
/>
|
|
<meta name="description" content="About Rest In Code" />
|
|
|
|
<link rel="stylesheet" href="style.css" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500;600&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link rel="shortcut icon" type="image/x-icon" href="/images/favicon.png" />
|
|
</head>
|
|
<body>
|
|
<a href="#main-content" class="skip-link">Skip to content</a>
|
|
|
|
<header>
|
|
<div class="header-inner">
|
|
<h1 id="main-title">
|
|
RestInCode <span id="subtitle">Passed but not Forgotten</span>
|
|
</h1>
|
|
<p id="tagline">
|
|
A memorial site for Hackers and InfoSec people who have passed.
|
|
</p>
|
|
<nav class="header-nav">
|
|
<a href="about.html">About</a>
|
|
<a href="https://github.com/restincode/restincode">Contribute</a>
|
|
<a href="https://github.com/restincode/restincode/issues">Contact</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main id="main-content" class="about-layout">
|
|
<a href="index.html" class="back-link">← Back to memorials</a>
|
|
|
|
<h2>About RestInCode</h2>
|
|
|
|
<p>
|
|
RIC is a memorial site for Hackers and Information Security people who
|
|
have passed. In a community and industry that many of us see as
|
|
timeless, we are quickly learning that is not the reality, as our dear
|
|
friends and colleagues more frequently move on. Our ideals, our
|
|
research, and our spirit persists. Unfortunately, our human shells can't
|
|
keep up sometimes. We seek to honor those who have touched security,
|
|
technology, and our lives.
|
|
</p>
|
|
|
|
<p>
|
|
Lorem ipsum dolor sit amet. We leave this here for the thoughts we want
|
|
to convey, but can't find the words for it.
|
|
</p>
|
|
</main>
|
|
|
|
<footer>
|
|
Memorial content belongs to its respective creators and rights holders. We
|
|
do our best to identify and credit them.
|
|
</footer>
|
|
</body>
|
|
</html>
|