-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtutorial.html
47 lines (38 loc) · 1.2 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
---
layout: base
---
<div class="page tutorial" id="page">
{% include components/tutorial/promotion-header.html %}
{% include components/tutorial/header.html %}
<div class="page-content">
{% include components/tutorial/pager.html class="pager--top" %}
<article class="entry">
<header class="entry__header">
{% if page.subtitle %}
<h2 class="entry__subtitle">
{{ page.subtitle }}
</h2>
{% endif %}
<h1 class="entry__title">
<a href="{{ page.url | remove: 'index.html' }}">
{{ page.title }}
</a>
</h1>
</header>
{% if page.show_metadata == nil or page.show_metadata == true %}
<aside class="entry__metadata">
{% include components/author.html %}
<footer class="entry__date">
{{ page.date | date: "%d %b. %Y" | downcase }}
</footer>
</aside>
{% endif %}
<div class="entry__content">
{{ content }}
</div>
</article>
{% include components/tutorial/pager.html class="pager--bottom" %}
{% include components/tutorial/promotion.html %}
</div>
{% include components/tutorial/footer.html %}
</div>