forked from themefisher/airspace-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathlisting.html
86 lines (86 loc) · 2.87 KB
/
listing.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
78
79
80
81
82
83
84
85
86
---
layout: page
title: Listing
permalink: /listing
---
<!-- Slider Start -->
<section id="global-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h1>{% t listing.call.title %}</h1>
<p>{% t listing.call.desc %}</p>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Start -->
<section id="listing">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<div class="container-listing">
<div class="info">
<h1>{% t listing.desc.first %}</h1><span>{% t listing.desc.sec %} <i class='fa fa-heart animated infinite pulse'></i> {% t listing.desc.third %} <a
href='#'>{% t listing.desc.forth %}</a> | {% t listing.desc.fifth %} <a
href='#'>{% t listing.desc.sixth %}</a></span>
</div>
{% for item in site.data.listing %}
<!-- Normal Demo-->
<div class="column">
<div class="demo-title">{{ item.city }}, {{ item.state }}</div>
<!-- Post-->
<div class="post-module hover">
<!-- Thumbnail-->
<div class="thumbnail">
<div class="date">
<div class="day">{{ item.discount }}</div>
</div><img
src="/img/listings/{{ item.image }}" />
</div>
<!-- Post Content-->
<div class="post-content">
<div class="category">{{ item.service }}</div>
<h1 class="title">{{ item.title }}</h1>
<h2 class="sub_title">{{ item.subtitle }}</h2>
<p class="description">{{ item.description }}</p>
<!--
<div class="post-meta"><span class="timestamp"><i class="fa fa-clock-">o</i> 6 mins ago</span><span
class="comments"><i class="fa fa-comments"></i><a href="#"> 39 comments</a></span></div>
-->
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</section>
<!-- Call to action Start -->
<section id="call-to-action">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h2>{% t listing.final.title %}</h2>
<p>{% t listing.final.text %}</p>
<a class="btn btn-default btn-call-to-action" href="{{ site.baseurl }}/contact">{% t work.final.button %}</a>
</div>
</div>
</div>
</div>
</section>
<script type="text/javascript">
$(window).load(function() {
$('.post-module').hover(function() {
$(this).find('.description').stop().animate({
height: "toggle",
opacity: "toggle"
}, 300);
});
});
</script>