You've already forked uutils.github.io
mirror of
https://github.com/uutils/uutils.github.io.git
synced 2026-06-10 16:12:28 -07:00
75 lines
2.3 KiB
HTML
75 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>
|
|
{%- block title -%}
|
|
{{ config.title }}
|
|
{%- endblock title -%}
|
|
</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="/style.css" rel="stylesheet">
|
|
<meta name="description" content="{{ config.description }}">
|
|
<link rel="alternate" type="application/atom+xml" title="uutils blog" href="/atom.xml">
|
|
<link href="/giallo-dark.css" rel="stylesheet" media="(prefers-color-scheme: dark)" />
|
|
<link href="/giallo-light.css" rel="stylesheet" media="(prefers-color-scheme: light)" />
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<a href="/" class="home">{% include "logo.html" %}</a>
|
|
<div id="mobile-open-navigation">
|
|
<button id="open-header-button">
|
|
<div></div>
|
|
<div></div>
|
|
<div></div>
|
|
</button>
|
|
</div>
|
|
<div class="navigation-block">
|
|
<div class="dropdown">
|
|
<span class="dropdown-toggle">Projects</span>
|
|
<div class="dropdown-menu">
|
|
<a href="/coreutils">Coreutils</a>
|
|
<a href="/findutils">Findutils</a>
|
|
<a href="/diffutils">Diffutils</a>
|
|
<a href="/util-linux">Util-linux</a>
|
|
<a href="/procps">Procps</a>
|
|
<a href="/acl">Acl</a>
|
|
<a href="/tar">Tar</a>
|
|
<a href="/sed">Sed</a>
|
|
<a href="/login">Login</a>
|
|
<a href="/hostname">Hostname</a>
|
|
<a href="/bsdutils">Bsdutils</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="spacer"></div>
|
|
<div class="navigation-block">
|
|
<a href="/blog">Blog</a>
|
|
<a href="https://twitter.com/uutils_/">Twitter</a>
|
|
<a href="https://mastodon.social/@uutils" rel="me">Mastodon</a>
|
|
<a href="/gsoc">GSOC</a>
|
|
<a href="https://github.com/uutils" class="icon">
|
|
<div class="github-icon-black" aria-hidden="true"></div>
|
|
</a>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
{%- block main -%}
|
|
{%- endblock main -%}
|
|
</main>
|
|
<footer>
|
|
<a href="https://github.com/uutils">
|
|
<div class="github-icon" aria-hidden="true"></div>
|
|
</a>
|
|
<span>uutils, MIT</span>
|
|
</footer>
|
|
<script defer>
|
|
document.getElementById("open-header-button").addEventListener("click", () => {
|
|
document.getElementsByTagName("header")[0].classList.toggle("open");
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|