diff options
| author | mo8it <mo8it@proton.me> | 2025-05-16 23:11:08 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2025-05-16 23:11:08 +0200 |
| commit | 7ec698696537aac4433bb0e60fb10310a6b34bc1 (patch) | |
| tree | 310e862b2502241d20a70433d125c80d5721722e /website/templates/index.html | |
| parent | 74ab9924b4193c0fb66f3c0e3667a4d7b4edfb18 (diff) | |
Add templates
Diffstat (limited to 'website/templates/index.html')
| -rw-r--r-- | website/templates/index.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/website/templates/index.html b/website/templates/index.html new file mode 100644 index 0000000..5877765 --- /dev/null +++ b/website/templates/index.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} + +{% import "macros.html" as macros %} + +{% block content %} + <div class="m-3"> + <h1>Rustlings</h1> + + {{ section.content | replace(from="<!-- toc -->", to=macros::toc() ) | safe }} + </div> +{% endblock %} |
