static: replace features with package
All checks were successful
Static / Flake checks (push) Successful in 22s
Static / Create distribution (push) Successful in 50s

This commit is contained in:
Ophestra 2025-06-28 16:04:15 +09:00
parent c6c9d6dea9
commit 0f310aa450
Signed by: cat
SSH Key Fingerprint: SHA256:gQ67O0enBZ7UdZypgtspB2FDM1g3GVw8nX0XSdcFw8Q
4 changed files with 54 additions and 1528 deletions

View File

@ -11,7 +11,7 @@ pages = [
["/camera-privacy-policy", 0.0],
["/contact", 0.5],
["/faq", 1.0],
["/features", 1.0],
["/package", 1.0],
["/hiring", 0.2],
["/humans.txt", 0.0],
["/pdfviewer-privacy-policy", 0.0],

File diff suppressed because it is too large Load Diff

52
static/package.html Normal file
View File

@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="utf-8"/>
<title>Package | Hakurei</title>
<meta name="description" content="Overview of the planterette package manager and its interactions with Hakurei.."/>
<meta name="theme-color" content="#212121"/>
<meta name="color-scheme" content="dark light"/>
<meta name="msapplication-TileColor" content="#ffffff"/>
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
<meta property="og:title" content="Planterette packaging overview"/>
<meta property="og:description" content="Overview of the planterette package manager and its interactions with Hakurei."/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="https://hakurei.app/opengraph.png"/>
<meta property="og:image:width" content="512"/>
<meta property="og:image:height" content="512"/>
<meta property="og:image:alt" content="Hakurei logo"/>
<meta property="og:site_name" content="Hakurei"/>
<meta property="og:url" content="https://hakurei.app/package.html"/>
<link rel="canonical" href="https://hakurei.app/package.html"/>
<link rel="icon" href="/favicon.ico"/>
<link rel="icon" sizes="any" type="image/svg+xml" href="/favicon.svg"/>
<link rel="mask-icon" href="[[path|/mask-icon.svg]]" color="#1a1a1a"/>
<link rel="apple-touch-icon" href="/apple-touch-icon.png"/>
[[css|/main.css]]
<link rel="manifest" href="/manifest.webmanifest"/>
<link rel="license" href="/LICENSE.txt"/>
<link rel="me" href="https://port.mk/@hakurei"/>
[[js|/js/redirect.js]]
</head>
<body>
{% with current_page="package" %}
{% include "header.html" %}
{% endwith %}
<main id="package">
<h1><a href="#package">Package management</a></h1>
<p>Planterette is an experimental Android-like package manager providing
fully self-contained apps running in Hakurei containers. The planterette
software is not part of Hakurei and configures Hakurei through the public JSON API.</p>
<p>Planterette is currently in a very early stage of development, and using it for
anything beyond experimentation or development is not recommended.</p>
<p>If you wish to work on planterette, its source code can be found under
<code>cmd/planterette</code> of Hakurei's source tree. This is subject to change.
The Nix package builder can be accessed via the <code>buildPackage</code> output
of the Nix flake, however this is pending replacement.</p>
</main>
{% include "footer.html" %}
</body>
</html>

View File

@ -2,7 +2,7 @@
<nav id="site-menu">
<ul>
<li {% if current_page == "/" %}aria-current="page"{% endif %}><a href="/"><img src="[[path|/mask-icon.svg]]" alt=""/>Hakurei</a></li>
<li {% if current_page == "features" %}aria-current="page"{% endif %}><a href="/features.html">Features</a></li>
<li {% if current_page == "package" %}aria-current="page"{% endif %}><a href="/package.html">Package</a></li>
<li {% if current_page == "install" %}aria-current="page"{% endif %}><a href="/install/">Install</a></li>
<li {% if current_page == "build" %}aria-current="page"{% endif %}><a href="/build.html">Build</a></li>
<li {% if current_page == "usage" %}aria-current="page"{% endif %}><a href="/usage.html">Usage</a></li>