-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
92 lines (86 loc) · 3.68 KB
/
index.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
---
layout: default
---
{% include hero.html %}
<div class="grid-block grid-container grid-2">
<div class="grid-block noscroll vertical">
<section class="card padding-lg">
<img class="img" src="{{ site.baseurl }}/images/getting-started.svg" height="180" width="180">
<h1 class="h1 padding-xxs">Getting Started</h1>
<ul class="list">
{% assign orderedPosts = site.categories.getting-started | sort: "step" %}
{% for post in orderedPosts %}
{% if post.title %}
<li class="list-item">
<a class="grid-block justify-justified align-center link padding-xxs" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}
<svg class="icons icons-chevron-right"><use xlink:href="#icons-chevron-right"></svg>
</a>
{% endif %}
{% endfor %}
</ul>
</section>
<section class="card padding-lg">
<img class="img" src="{{ site.baseurl }}/images/java.svg" height="150" width="150">
<h1 class="h1 padding-xxs">Java</h1>
<ul class="list">
{% assign orderedPosts = site.categories.java | sort: "step" %}
{% for post in orderedPosts %}
{% if post.title %}
<li class="list-item">
<a class="grid-block justify-justified align-center link padding-xxs" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}
<svg class="icons icons-chevron-right"><use xlink:href="#icons-chevron-right"></svg>
</a>
{% endif %}
{% endfor %}
</ul>
</section>
<section class="card padding-lg">
<img class="img" src="{{ site.baseurl }}/images/php.svg" height="150" width="150">
<h1 class="h1 padding-xxs">PHP</h1>
<ul class="list">
{% assign orderedPosts = site.categories.php | sort: "step" %}
{% for post in orderedPosts %}
{% if post.title %}
<li class="list-item">
<a class="grid-block justify-justified align-center link padding-xxs" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}
<svg class="icons icons-chevron-right"><use xlink:href="#icons-chevron-right"></svg>
</a>
{% endif %}
{% endfor %}
</ul>
</section>
</div>
<div class="grid-block noscroll vertical">
<section class="card padding-lg">
<img class="img" src="{{ site.baseurl }}/images/python.svg" height="150" width="150">
<h1 class="h1 padding-xxs">Python</h1>
<ul class="list">
{% assign orderedPosts = site.categories.python | sort: "step" %}
{% for post in orderedPosts %}
{% if post.title %}
<li class="list-item">
<a class="grid-block justify-justified align-center link padding-xxs" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}
<svg class="icons icons-chevron-right"><use xlink:href="#icons-chevron-right"></svg>
</a>
{% endif %}
{% endfor %}
</ul>
</section>
<section class="card padding-lg">
<img class="img" src="{{ site.baseurl }}/images/rails.svg" height="150" width="150">
<h1 class="h1 padding-xxs">Ruby on Rails</h1>
<ul class="list">
{% assign orderedPosts = site.categories.rails | sort: "step" %}
{% for post in orderedPosts %}
{% if post.title %}
<li class="list-item">
<a class="grid-block justify-justified align-center link padding-xxs" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}
<svg class="icons icons-chevron-right"><use xlink:href="#icons-chevron-right"></svg>
</a>
{% endif %}
{% endfor %}
</ul>
</section>
</div>
{% include coming-soon.html %}
</div>