-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathtutorial.html
More file actions
52 lines (34 loc) · 1.3 KB
/
tutorial.html
File metadata and controls
52 lines (34 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{% extends "app/templates/layout.html" %}
{% import "app/templates/layout.html" as layout %}
{% block head %}
{{ layout.head(title=file.fm.title, description=file.fm.description, canonical=file.fm.canonical) }}
{% endblock %}
{% block subheader %}
{% include "app/templates/partials/_learn_subheader.html" %}
{% endblock %}
{% block page %}
<div class="container" id="main-content">
{% include "app/templates/partials/_breadcrumb.html" %}
<h1>{{ file.fm.title_html | safe }}</h1>
{% if file.fm.author %}
{% include "app/templates/partials/_author_byline.html" %}
{% endif %}
<div class="row">
<div id="content" class="col-9">
<div class="line-numbers">
{{ contents | safe }}
{% if file.fm.more_learning %}
{% include "app/templates/partials/_more_learning.html" %}
{% endif %}
</div>
</div>
<div id="sidemenu" class="col-3">
{% include "app/templates/partials/_tutorial_sidemenu.html" ignore missing %}
</div>
{% include "app/templates/partials/_last_update.html" %}
<br />
{% include "app/templates/partials/_breadcrumb.html" %}
<a href="/learn" class="back-link">Back to Tutorial List</a>
</div>
</div>
{% endblock %}