-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourses.html
42 lines (37 loc) · 1.16 KB
/
courses.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
---
title: Courses
description: Find out more about Stackacademy.tv's online courses and learn a new
skill today.
body_class: courses
---
<h1>Stackacademy Courses</h1>
<div class="point">
<i class="icon-graduation-cap"></i>
<div>
<strong class="h3">Learning Efficiency</strong>
<p class="h5">Stackacademy.tv courses are meticulously designed to be concise, practical and engaging.</p>
</div>
</div>
<div class="point">
<i class="icon-videocam"></i>
<div>
<strong class="h3">High Quality Lectures</strong>
<p class="h5">Video production, recording & audio quality is of the highest standard.</p>
</div>
</div>
<div class="course-container flex one two-500 three-800">
{% for course in site.data.courses %}
{% assign course_key = course[0] %}
{% assign course_data = course[1] %}
<div>
<article class="course card">
<a href="/courses/{{ course_key }}/" class="logo" style="background-image:url('/img/courses/{{ course_key }}.png');"></a>
<footer>
<a href="/courses/{{ course_key }}/">
<h3>{{ course_data.nicename }}<br><small>{{ course_data.subname }}</small></h3>
</a>
</footer>
</article>
</div>
{% endfor %}
</div>