forked from t413/SinglePaged
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtutorial.html
114 lines (72 loc) · 3.07 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
---
---
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ site.title }}</title>
<meta name="keywords" content="{{ site.keywords }}">
<meta name="description" content="{{ site.description }}">
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="contact.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="combo.css">
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
{% if site.favicon %}<link rel="shortcut icon" href="{{ site.favicon }}" type="image/x-icon">{% endif %}
{% if site.touch_icon %}<link rel="apple-touch-icon" href="{{ site.touch_icon }}">{% endif %}
</head>
<body>
<div id="main">
{% include navigation-header.html %}
<div class="section">
<div class="container">
<div class="row">
<div class="col-md-12">
{% for page in site.tutorial_sections %}
{% capture id %}{{ page.id | remove:'/' | downcase }}{% endcapture %}
<h2>{{page.title}}</h2>
<div id="section-{{id}}" class="p-{{id}} {{ page.style }}">{{ page.content }}</div>
{% endfor %}
<!-- maybe later ... some previous next nav ...
<div class="section-nav">
<div class="left align-right">
<span class="prev disabled">Back</span>
</div>
<div class="right align-left">
<a href="/docs/quickstart/" class="next">Next</a>
</div>
</div>
<div class="clear"></div>
-->
</div>
<!-- prapared for section menu later (set other col to col-md-10!!!) ...
<div class="col-md-2 hidden-xs hidden-sm">
<div class="section-navr">
<h4>Menu</h4>
<ul>
<li class="current"><a href="/docs/home/">Welcome</a></li>
<li class="current"><a href="/docs/home/">Bla bla bla</a></li>
</ul>
</div>
</div>
-->
</div>
</div>
</div>
<div id="footer" class="section text-white">
<div class="container">
{% capture foottext %} {% include footer.md %} {% endcapture %}
{{ foottext | markdownify }}
</div>
</div>
</div>
{% include analytics.html %}
</body>
</html>