-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
42 lines (37 loc) · 1.19 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
---
layout: default
---
<div class="home">
{% assign blog_url = "https://blog.teamtreehouse.com/" %}
<ul class="post-list">
<li><h2>Windows</h2>
<ul>
{% for guide in site.windows %}
{% assign slug = guide.title | downcase | remove: "®" | replace: ".", "-" | replace: " ", "-" %}
<li><a href="{{ blog_url }}{{ slug }}" target="_blank">{{ guide.title }}</a></li>
{% endfor %}
</ul>
</li>
</ul>
<ul class="post-list">
<li><h2>Mac</h2>
<ul>
{% for guide in site.mac %}
{% assign slug = guide.title | downcase | remove: "®" | replace: ".", "-" | replace: " ", "-" %}
<li><a href="{{ blog_url }}{{ slug }}" target="_blank">{{ guide.title }}</a></li>
{% endfor %}
</ul>
</li>
</ul>
<ul class="post-list">
<li><h2>Linux</h2>
<ul>
{% for guide in site.linux %}
{% assign slug = guide.title | downcase | remove: "®" | replace: ".", "-" | replace: " ", "-" %}
<li><a href="{{ blog_url }}{{ slug }}" target="_blank">{{ 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>