-
Notifications
You must be signed in to change notification settings - Fork 10
/
beginner-courses.html
77 lines (66 loc) · 1.89 KB
/
beginner-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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
layout: default
title: Beginner Courses
stylesheet: courses.css
permalink: /courses/beginners/
ogImage: Beginners-Banner.jpg
---
{% include pageHeader.html
img="Beginners-Banner.jpg"
header="Beginners"
text="The decentralized revolution can only begin once we include everyone. Our beginner courses use straightforward language to help anyone get up to speed. Learn vocabulary and get a conceptual understanding of the ecosystem. <br>All of our courses are 100% FREE. Don't wait - start today!"
ctaText="Start Blockchain 101"
ctaLink="/courses/blockchain-101/01/the-birth-of-digital-money"
%}
<section class="breadcrumbs bcCoursePath">
<div class="row">
<div class="col-sm-12">
<a href="/">Home</a> / <a href="/courses/">Courses</a> / <a href="#">Beginners</a>
</div>
</div>
</section>
{% include loginToTrackProgress.html %}
<section class="coursesList coursePathHeader">
<h1">Courses</h1>
{% assign sorted = site.courses | sort: 'title' %}
{% for course in sorted %}
{% if course.tags contains "beginner" %}
{% include courseListing.html
image=course.image
title=course.title
author=course.author
summary=course.summary
link=course.permalink
tag="beginner"
slug=course.slug
%}
{% endif %}
{% endfor %}
</section>
<section class="pathsList pathPage">
<h1">Paths</h1>
<div class="row">
<div class="col-sm-12">
<span>
Looking for something different?
</span>
</div>
</div>
<div class="row pathButtons">
<div class="col-sm-4">
<a href="/courses/developers/">
<img src="/assets/img/Developers_button.jpg">
<h5>Developers</h5>
</a>
</div>
<div class="col-sm-4">
<a href="/courses/professionals/">
<img src="/assets/img/Professionals_button.jpg">
<h5>Professionals</h5>
</a>
</div>
</div>
</section>
{% include coursesMap.html %}
{% include coursesProgressCalculator.html %}
{% include getInvolved.html %}