mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-06-07 06:04:47 +00:00
12 lines
248 B
HTML
12 lines
248 B
HTML
{% extends "base.html" %}
|
|
|
|
{% import "macros.html" as macros %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
{{ page.content | replace(from="<!-- toc -->", to=macros::toc() ) | safe }}
|
|
</article>
|
|
{% endblock %}
|