diff options
| author | Christian Cleberg <[email protected]> | 2026-08-01 23:56:19 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-08-01 23:56:19 -0500 |
| commit | c03e38b07ce439f9e6f4d23cb470193393e840e2 (patch) | |
| tree | 356657ff9396912e1c8bfb36f8c0d4afe283b152 /templates/index.html | |
| parent | 65f7a9607a60adbcb33ce4227f96980345006d5e (diff) | |
| download | krz.sh-c03e38b07ce439f9e6f4d23cb470193393e840e2.tar.gz krz.sh-c03e38b07ce439f9e6f4d23cb470193393e840e2.tar.bz2 krz.sh-c03e38b07ce439f9e6f4d23cb470193393e840e2.zip | |
initial commit
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..a9dd0fc --- /dev/null +++ b/templates/index.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block content %} +<p class="tagline">small, durable software ยท privacy-first tools you control</p> + +<div class="hero-actions"> + <a class="btn btn-primary" href="{{ get_url(path="/services/") | safe }}">view services →</a> + <a class="btn" href="{{ get_url(path="/apps/") | safe }}">browse apps</a> +</div> + +<article class="prose"> + {{ section.content | safe }} +</article> +{% endblock content %} |
