-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
166 lines (142 loc) · 5.55 KB
/
index.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
---
layout: default
---
{% include slideshow.html %}
<!--Wrapper Start-->
<div class="wrapper">
<!--Program List Wrap Start-->
<div class="program_bg container">
<div class="col-md-4">
<div class="program_list">
<figure>
{% include image.html src="/assets/images/program-02.jpg" alt="Denton Texas" retina=1 %}
</figure>
<div class="program_des">
<h5>Community Initiatives</h5>
<p>Current technology projects in Denton.</p>
<a class="btn link_2" href="/community-projects">See More</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="program_list">
<figure>
{% include image.html src="/assets/images/program-01.jpg" alt="" retina=0 %}
</figure>
<div class="program_des">
<h5>Resources</h5>
<p>Open data resource archive</p>
<a class="btn link_2" href="/resources">See More</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="program_list">
<figure>
{% include image.html src="/assets/images/program-03.jpg" alt="" retina=0 %}
</figure>
<div class="program_des">
<h5>Engaged Citizens</h5>
<p>Contribute to open data in Denton</p>
<a class="btn link_2" href="/get-involved">Get involved</a>
</div>
</div>
</div>
</div>
<!--Program List Wrap Start-->
<!--News & Press Release Wrap Start-->
<section class="news_bg">
<div class="container">
<div class="hdg_1">
<h6>Media Center</h6>
<h4>Blogs & Press Release</h4>
</div>
{% include post_teasers.html %}
</div>
</section>
<!--News & Press Release Wrap End-->
<!--Our Top Politician Wrap Start-->
<section class="top_politician_bg">
<div class="container">
<div class="hdg_1">
<h6>Our people</h6>
<h4>Our Top Contributors</h4>
</div>
<div class="row">
{% for author in site.data.authors limit:3 %}
<div class="col-md-4 col-sm-6">
<div class="politician">
<figure>
<img src="https://www.gravatar.com/avatar/{{ author.gravatar }}?s=300" title="{{ author.name }}" class="img-responsive img-thumbnail">
<figcaption class="poli_img_des">
{% if author.name %}<h6>{{ author.name }}</h6>{% endif %}
{% if author.title %}<span>{{ author.title}}</span>{% endif %}
{% if author.bio %}<p>{{ author.bio }}</p>{% endif %}
</figcaption>
</figure>
<div class="politician_des">
{% if author.name %}<h6>{{ author.name }}</h6>{% endif %}
{% if author.title %}<span>{{ author.title}}</span>{% endif %}
<ul>
{% if author.facebook %}<li><a href="{{ author.facebook }}"><i class="fa fa-facebook"></i></a></li>{% endif %}
{% if author.twitter %}<li><a href="{{ author.twitter }}"><i class="fa fa-twitter"></i></a></li>{% endif %}
{% if author.github %}<li><a href="{{ author.github }}"><i class="fa fa-github"></i></a></li>{% endif %}
{% if author.email %}<li><a href="mailto:{{ author.email }}"><i class="fa fa-paper-plane"></i></a></li>{% endif %}
</ul>
</div>
</div>
</div>
{% endfor %}
</div>
</section>
<!--Our Top Politician Wrap End-->
<!--Testimonial Wrap Start-->
<!-- <section class="testimonial_bg">
<div class="container">
<div class="hdg_1">
<h6>Testimonials</h6>
<h4>What people Say About us</h4>
</div>
<div id="owl-demo" class="owl-carousel owl-theme testimonial_wrap">
<div class="item">
<div class="testi_wrap">
<figure>
{% include image.html src="/assets/images/testimonial-01.png" alt="" retina=0 %}
</figure>
<p>Thank you for all your help and assistance over the years. I would have no hesitation in voting for you guys. Thank you</p>
<a href="#">David Andersion</a>
</div>
</div>
<div class="item">
<div class="testi_wrap">
<figure>
{% include image.html src="/assets/images/testimonial-02.png" alt="" retina=0 %}
</figure>
<p>Your assistance was one of the highlights in my campaign! Amazed by your ability to transform my thoughts into a focused message</p>
<a href="#">Joanna Doe</a>
</div>
</div>
<div class="item">
<div class="testi_wrap">
<figure>
{% include image.html src="/assets/images/testimonial-01.png" alt="" retina=0 %}
</figure>
<p>They were involved in nearly every aspect of the campaign strategy and execution. The results exceeded my highest expectations. </p>
<a href="#">Matt Jefferson</a>
</div>
</div>
<div class="item">
<div class="testi_wrap">
<figure>
{% include image.html src="/assets/images/testimonial-02.png" alt="" retina=0 %}
</figure>
<p>Thank you for your support and regular updates. This really is inspiring, good job! I totally love the theme. It makes my job so much easier</p>
<a href="#">Ricky Martinez</a>
</div>
</div>
</div>
</div>
</section> -->
<!--Testimonial Wrap End-->
</div>
<!--Wrapper End-->