ssg 0.0.45

A secure-by-default static site generator built in Rust. WCAG 2.2 AA validation, CSP/SRI hardening, native JS/CSS minification, automated CycloneDX SBOM, local LLM content pipeline, WebAssembly target, interactive islands, streaming compilation for 100K+ pages, 28-locale i18n, and one-command deployment.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- SPDX-License-Identifier: Apache-2.0 OR MIT -->
{% extends "base.html" %}

{% block title %}Category: {{ category }}{% if site.title %} — {{ site.title }}{% endif %}{% endblock %}

{% block content %}
<article class="taxonomy-page taxonomy-category">
  <header>
    <h1>Category: <span class="category-name">{{ category }}</span></h1>
    <p class="taxonomy-meta">{{ posts | length }} page{% if posts | length != 1 %}s{% endif %} in <em>{{ category }}</em>.</p>
  </header>
  <ul class="taxonomy-page-list">
    {% for post in posts %}
    <li><a href="{{ post.url | safe }}">{{ post.title }}</a></li>
    {% endfor %}
  </ul>
</article>
{% endblock %}