-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
executable file
·40 lines (40 loc) · 1.83 KB
/
events.html
File metadata and controls
executable file
·40 lines (40 loc) · 1.83 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
---
layout: default
title: Events
permalink: /events
---
{% include page-title.html %}
<!-- Start Themeix Feature-->
<div class="section-spacing bg-color">
<div class="container">
{% assign counter = 0 %}
{% for event in site.data.events %}
{% assign counter = counter | plus:1 %}
<div class="upcoming-event-wrapper ">
<div class="row">
<div class="col-md-8 col-sm-7">
<div class="upcoming-event-details wow fadeIn" data-wow-duration="{{counter}}s">
<div class="upcoming-event-logo">
<h2>{{event.day}}</h2>
<h5>{{event.month}}</h5>
</div>
<div class="upcoming-event-content">
<h4>{{event.title}}</h4>
<ul class="upcoming-event-meta list-inline">
<li class="list-inline-item"><i class="fa fa-clock-o" aria-hidden="true"></i>{{event.time}}</li>
<li class="list-inline-item"><i class="fa fa-map-marker" aria-hidden="true"></i>{{event.location}}</li>
</ul>
<a class="upcoming-event-btn" href="{{event.url}}">details</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-5">
<div class="upcoming-event-thumb"><img src="{{event.image}}"
alt="{{event.title}}" /></div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
<!-- End Themeix Feature-->