13 lines
322 B
HTML
13 lines
322 B
HTML
{% extends 'layout.html' %}
|
|
|
|
{% block head %}
|
|
<title>Setup Tutorial</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/tutorial.css") }}" />
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div id="tutorial-wrapper" class="main-content">
|
|
{{ tutorial|safe }}
|
|
</div>
|
|
{% endblock %}
|