diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-05-02 00:21:33 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-05-02 00:21:33 +0800 |
| commit | e0f83b5e7596c5d6efdbe724a5d97d6894111bdf (patch) | |
| tree | f4949e6690f4280dccc0c218a9c9841523a4f3b4 /website/header | |
| parent | 69efc726848cb6063efa9287ef7720747dd10d6a (diff) | |
| download | alicelinux-e0f83b5e7596c5d6efdbe724a5d97d6894111bdf.tar.gz alicelinux-e0f83b5e7596c5d6efdbe724a5d97d6894111bdf.zip | |
added website dir
Diffstat (limited to 'website/header')
| -rw-r--r-- | website/header | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/website/header b/website/header new file mode 100644 index 00000000..befad9fa --- /dev/null +++ b/website/header @@ -0,0 +1,65 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Alice Linux - @TITLE@</title> + <style> + body { + font-family: monospace; + font-size: 14px; + line-height: 1.25; + max-width: 60em; + margin-left: auto; + margin-right: auto; + padding-left: 1em; + padding-right: 1em; + background-color: #242424; + color: #fefefe; + } + pre { + background-color: #2b2b2b; + border-radius: 3px; + padding: 10px; + overflow-x: auto; + } + code { + color: #f7f3d6; + } + img { + display: block; + max-width: 100%; + } + hr { + border: 0; + border-top: 1px dashed #fefefe; + margin: 20px 0; + } + table { + width: 100%; + border-collapse: collapse; + } + th, td { + padding: 4px; + } + th { + background-color: #221e1f; + } + table, th, td { + border: 1px dashed #e7e8eb; + } + a { + color: #90cbf9; + text-decoration: none + } + a:hover { + color: #869edc; + text-decoration: underline + } + </style> +</head> +<body> +<div class="centered-wrapper"> + <h1>@TITLE@</h1> + <a href="/">home</a> / <a href="/docs">docs</a> / <a href="https://codeberg.org/emmett1/alicelinux">development</a> / <a href="https://codeberg.org/emmett1/alicelinux/releases">download</a> / <a href="https://sourceforge.net/projects/alice-linux/files/iso/">iso</a> / <a href="/community.html">community</a> / <a href="/donate.html">donate</a> + <hr> |