forked from treehouse/installation-guides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 816 Bytes
/
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
---
layout: default
---
<div class="home">
<ul class="post-list">
<li><h2>Windows</h2>
<ul>
{% for guide in site.windows %}
<li><a href="{{ site.baseurl }}{{ guide.url }}">{{ guide.title }}</a></li>
{% endfor %}
</ul>
</li>
</ul>
<ul class="post-list">
<li><h2>Mac</h2>
<ul>
{% for guide in site.mac %}
<li><a href="{{ site.baseurl }}{{ guide.url }}">{{ guide.title }}</a></li>
{% endfor %}
</ul>
</li>
</ul>
<ul class="post-list">
<li><h2>Linux</h2>
<ul>
{% for guide in site.linux %}
<li><a href="{{ site.baseurl }}{{ guide.url }}">{{ guide.title }}</a></li>
{% endfor %}
</ul>
</li>
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>