new 'ssg'

This commit is contained in:
root 2025-11-08 12:58:36 +00:00
parent 450a5ce1d6
commit ae414ceb12
13 changed files with 225 additions and 477 deletions

109
homepage/template.html Normal file
View file

@ -0,0 +1,109 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>%%TITLE%%</title>
<!-- HTML Meta Tags -->
<meta name="description" content="See no evil, hear no evil, speak no evil.">
<meta property="og:url" content="https://distrust.network">
<meta property="og:type" content="website">
<meta property="og:title" content="Distrust">
<meta property="og:description" content="See no evil, hear no evil, speak no evil.">
<meta property="og:image" content="https://distrust.network/logo.png">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="distrust.network">
<meta property="twitter:url" content="https://distrust.network">
<meta name="twitter:title" content="Distrust">
<meta name="twitter:description" content="See no evil, hear no evil, speak no evil.">
<meta name="twitter:image" content="https://distrust.network/logo.png">
<meta name="theme-color" content="#dda0dd">
<link rel="icon" href="logo.png">
<style>
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: monospace;
overflow-y: auto;
}
@media (max-width: 992px) {
.centered {
position: fixed;
top: 0;
left: 0;
transform: none;
width: 100vw;
height: 100vh;
padding: 1rem;
box-sizing: border-box;
font-size: 18px;
}
}
body {
background-color: #121212;
background: url("/background.png");
color: #FFFFFF;
}
a {
color: plum;
text-decoration: underline;
}
.hover {
text-decoration-style: dotted;
}
.external {
text-decoration-style: wavy;
}
hr {
height: 0.1rem;
background-color: plum;
border: none;
}
li::marker {
color: plum;
}
li {
list-style-type: "> ";
}
.privacy-policy {
float: right;
}
ul {
columns: 2;
-webkit-columns: 2;
-moz-columns: 2;
}
.quote {
columns: 1;
-webkit-columns: 1;
-moz-columns: 1;
}
.dimmed {
color: gray;
text-align: center;
}
.logo {
width: 75px;
height: 75px;
float: right;
}
</style>
</head>
<body>
<div class="centered">
<h1>Distrust</h1>
<img src="/logo.png" class="logo" alt="An eye, crossed out.">
<hr>
<p><i>"We know where you are. We know where you've been. We can more or less know what you're thinking about."</i>
<small><a href="https://www.businessinsider.com/eric-schmidt-we-know-where-you-are-we-know-where-youve-been-we-can-more-or-less-know-what-youre-thinking-about-2010-10" class="external">Eric Schmidt, Former Google CEO</a></small></p>
<hr>
%%BODY%%
<hr>
<a href="/">Home</a> <a href="mailto:root@distrust.network?subject=INQUIRY">Contact</a> <a href="/about.html">About</a> <a href="/donate.html">Donate</a><a href="/legal.html" class="privacy-policy">Privacy Policy & TOS</a>
<p class="dimmed"><i>Highlight Types: <a class="hover">Hoverable</a>, <a>Internal Link</a>, <a class="external">External Link</a>.</i></p>
</div>
</body>
</html>