forked from mario21ic/play-with-docker.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.75 KB
/
index.html
File metadata and controls
42 lines (38 loc) · 1.75 KB
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: page
---
<div class="home">
<div class="row">
<div class="col-md-12">
<div class="row pack">
<img class="banner" src="{{site.baseurl}}/images/{{site.banner}}" alt="banner"/>
<legend class="announce">
We’re excited to celebrate Docker’s 4th birthday by providing courses and labs to help everyone learn Docker and welcome new members into the community. Each lab and course is listed below. A big shout out and thank you to Docker Captains <a href="https://www.twitter.com/marcosnils" target="_blank">Marcos Lilljedahl</a> and <a href="https://www.twitter.com/xetorthio" target="_blank">Jonathan Leibiusky</a> for creating play-with-docker, a fun and easy way to work through these labs and courses! </br></br>
Not sure which lab to choose? Look for the tags to give you direction on the experience level and subject of each course and lab.
</legend>
</div>
</div>
</div>
</div>
<div class="tags-expo">
<div class="tags-expo-list">
{% assign categories = site.categories %}
{% for cat in categories %}
<a href="#{{ cat[0] | slugify }}" class="post-tag">{{ cat[0] }}</a>
{% endfor %}
</div>
<hr/>
<div class="tags-expo-section">
{% for cat in categories %}
<h2 id="{{ cat[0] | slugify }}">{{ cat[0] | capitalize }}</h2>
<ul class="tags-expo-posts">
{% for post in cat[1] %}
<li>
<a class="post-title" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<small class="post-date">( {% for tag in post.tags %}<span class="post-tag">{{ tag | capitalize }}</span>{% endfor %})</small>
</li>
{% endfor %}
</ul>
{% endfor %}
</div>
</div>