-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathtutorial.html
53 lines (35 loc) · 1.43 KB
/
tutorial.html
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
53
{% 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 %}
This page was contributed by <a href="/author/{{ file.fm.author }}">{{ file.data.authorsMap[file.fm.author].name }}</a> under the <a href="https://oss.oracle.com/licenses/upl/">UPL</a>
<br />
{% 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 %}