-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkatas.html
41 lines (41 loc) · 1.1 KB
/
katas.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
---
layout: default
permalink: /katas/
title: Katas
page-order: 3
published: true
---
<div class="container panel">
<div class="row">
<h3 class="panel text-center">Select from the themes to find a kata to try!</h3>
<hr>
{% for theme in site.data.kata_themes.themes %}
<div class="col-xs-12 col-md-12">
<div class="panel invert-colors">
<div class="panel-title">
{{ theme["title"] }}
</div>
{% for kata in site.categories["katas"] %}
{% if kata.theme == theme["title"] %}
<div class="panel-content">
<div class="row">
<div class="col-sm-10">
{{ kata.title }}
<br>
<em>{{ kata.blurb }}</em>
</div>
<div class="col-sm-2">
<a class="btn btn-secondary btn-sm" href="{{ kata.url }}">
View Kata
</a>
</div>
</div>
<hr>
</div>
{% endif %}
{% endfor %}
</div>
</div>
{% endfor %}
</div>
</div>