Self-documenting docs site built with sukr itself (dogfooding): - docs/site.toml with sukr.io base URL - docs-specific templates with sidebar navigation - Dark theme CSS, responsive layout - Documentation: getting-started, configuration, features Also: improved error chaining for better template debugging
10 lines
276 B
HTML
10 lines
276 B
HTML
{% extends "base.html" %} {% block content %}
|
|
<article class="page">
|
|
<h1>{{ page.title }}</h1>
|
|
{% if page.description %}
|
|
<p class="lead">{{ page.description }}</p>
|
|
{% endif %}
|
|
<section class="content">{{ content | safe }}</section>
|
|
</article>
|
|
{% endblock content %}
|