-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse-list.html
More file actions
executable file
·36 lines (36 loc) · 1.27 KB
/
course-list.html
File metadata and controls
executable file
·36 lines (36 loc) · 1.27 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
---
layout: default
title: Courses List
permalink: /course-list
---
{% include page-title.html %}
<!-- Start Themeix Course-->
<section class="themeix-Course section-spacing bg-color">
<div class="container">
{% for course in site.courses %}
<div class="popular-course-post2">
<div class="row">
<div class="col-md-5">
<div class="popular-course-thumb" style="background-image:url({{course.image}})"> </div>
</div>
<div class="col-md-7">
<div class="popular-course-details wow fadeIn" >
<a href="{{course.url}}">
<h3>{{course.title}}</h3>
</a>
<p>{{course.description}}</p>
<div class="themeix-course-action-2">
<ul>
<li><span>{{course.fees}}</span></li>
<li> <a class="popular-course-enroll" href="{{course.url}}">View Now</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</section>
<!-- End Themeix Course -->
{% include subscribe.html %}