forked from BlockchainInstituteChi/weteachblockchain.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
professionals-courses.html
74 lines (63 loc) · 1.87 KB
/
professionals-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
---
layout: default
title: Developer Courses
stylesheet: courses.css
permalink: /courses/professionals/
---
{% include pageHeader.html
img="Professionals-Banner.jpg"
header="Professionals"
text="If your industry is adopting Blockchain systems, it's important to ensure you're up to date and understand the language. Our Professional track keeps it simple so you can learn what you need to without taking your whole day.<br>All of our courses are 100% FREE and take less than an hour to complete."
ctaText="Start Blockchain for Business"
ctaLink="/courses/blockchain-for-business/1/public-vs-private-blockchains"
%}
<section class="breadcrumbs bcCoursePath">
<div class="row">
<div class="col-sm-12">
<a href="/">Home</a> / <a href="/courses/">Courses</a> / <a href="#">Professionals</a>
</div>
</div>
</section>
<section class="coursesList coursePathHeader">
<h1 class="hasColorTag purple">Courses</h1>
{% assign sorted = site.courses | sort: 'tags' %}
{% for course in sorted %}
{% if course.tags contains "professional" %}
{% include courseListing.html
image=course.image
title=course.title
author=course.author
summary=course.summary
link=course.permalink
tag="professional"
slug=course.slug
%}
{% endif %}
{% endfor %}
</section>
<section class="pathsList pathPage">
<h1 class="hasColorTag teal">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/beginners/">
<img src="/assets/img/Novice_button.jpg">
<h5>Beginners</h5>
</a>
</div>
<div class="col-sm-4">
<a href="/courses/developers/">
<img src="/assets/img/Developers_button.jpg">
<h5>Developers</h5>
</a>
</div>
</div>
</section>
{% include pinkDivider.html %}
{% include FAQfooter.html %}