mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-01 16:03:31 +02:00
12 lines
248 B
HTML
12 lines
248 B
HTML
{% 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 %}
|