-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathexplore.html
More file actions
59 lines (48 loc) · 1.51 KB
/
Copy pathexplore.html
File metadata and controls
59 lines (48 loc) · 1.51 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
title: Explore
subtitle: Explore the available courses in Learning
layout: page
---
<div class="col-md-9">
<div class="row" data-toggle="isotope">
{% for post in site.posts %}
{% assign course = site.data.courses[post.course] %}
{% assign tutor = site.data.tutors[course.tutor] %}
<div class="item col-xs-12 col-sm-6 col-lg-4">
<div class="panel panel-default paper-hadow" data-z="0.5">
<div class="cover overlay cover-image-full hover">
<img src="{{ course.thumb }}" height="150" class="img icon-block
height-150">
<a href="{{ course.url }}" class="overlay overlay-full overlay-hover
overlay-bg-white">
<span class="v-center">
<span class="btn btn-circle btn-white btn-lg"><i class="fa fa-graduation-cap"></i></span>
</span>
</a>
</div>
<div class="panel-body">
<h4 class="text-headline margin-v-0-10"><a href="{{ course.url }}">{{
course.title }}</a></h4>
</div>
<hr class="margin-none">
<div class="panel-body">
<p>{{ course.description }}</p>
<div class="media v-middle">
<div class="media-left">
<img class="img-circle width-40" src="{{ tutor.pp }}">
</div>
<div class="media-body">
<h4><a href="/tutor/{{ course.tutor }}">{{ tutor.name }}</a><br></h4>
Tutor
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="col-md-3">
{% include sidebar.search.html %}
{% include sidebar.coursesCategories.html %}
</div>