-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (87 loc) · 3.51 KB
/
index.html
File metadata and controls
92 lines (87 loc) · 3.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
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
---
layout: index
---
<!-- Banner -->
<section id="banner">
<div class="inner">
<h2>Bootstrap <span>Denton</span></h2>
<h3>A Creative Community Mixer</h3>
<p>October 19th | <span>East Side Social Club</span> | 6:30 PM</p>
<ul class="actions">
<li><a href="https://www.eventbrite.com/e/bootstrap-denton-2017-community-mixer-tickets-37864391414" class="button special-1" target="_blank">RSVP Now!</a></li>
</ul>
</div>
<a href="#event" class="more scrolly">Learn More</a>
</section>
<!-- One -->
<section id="event" class="wrapper style1 special">
<div class="inner">
<header class="major">
<h2>Bootstrap Denton is a celebration<br>of our creative tech community</h2>
<p>Denton is known for our creative talent, innovative workforce, and engaged citizens. We are passionate, dedicated, and scrappy businesses without fear of experimentation and always pushing the envelope.</p>
</header>
<ul class="icons major">
<li><span class="icon fa-connectdevelop major"><span class="label">Community</span></span></li>
<li><span class="icon fa-heart-o major "><span class="label">Support</span></span></li>
<li><span class="icon fa-lightbulb-o major "><span class="label">Innovation</span></span></li>
</ul>
</div>
</section>
<!-- Two -->
<section id="organizations" class="wrapper alt style2">
{% for speaker in site.data.speakers %}
<section class="spotlight">
<div class="image">
{% include image.html src=speaker.image alt=speaker.organization retina=speaker.retina %}
</div>
<div class="content">
<h2>{{ speaker.name }}</h2>
<h3><a href="{{ speaker.site }}" title= "{{ speaker.organization }}" target="_blank">{{ speaker.organization }}</a></h3>
<p>{{ speaker.description }}</p>
</div>
</section>
{% endfor %}
</section>
<!-- Companies -->
<!-- <section id="companies" class="wrapper style3">
<header class="major">
<h2>Companies</h2>
</header>
<div class="inner box alt">
{% for company in site.data.companies %}
{% assign loopindex = forloop.index | modulo: 3 %}
{% if loopindex == 1 %}
<div class="row uniform 50%">
<div class="4u 6u(small) 12u(xsmall)">
{% include company.html name=company.name company=company.company desc=company.desc image=company.image site=company.site title=company.title retina=company.retina %}
</div>
{% elsif loopindex == 2 %}
<div class="4u 6u(small) 12u(xsmall)">
{% include company.html name=company.name company=company.company desc=company.desc image=company.image site=company.site title=company.title retina=company.retina %}
</div>
{% else %}
<div class="4u 6u(small) 12u(xsmall)">
{% include company.html name=company.name company=company.company desc=company.desc image=company.image site=company.site title=company.title retina=company.retina %}
</div>
</div>
{% endif %}
{% endfor %}
</div>
</section> -->
<!-- Three -->
<section id="faq" class="wrapper style2 special">
<div class="inner">
<header class="major">
<h2>What to expect</h2>
<p>You might have some questions, and that's okay. Here's the gist:</p>
</header>
<ul class="features">
{% for faq in site.data.faq %}
<li class="icon fa-{{faq.icon}}">
<h3>{{ faq.title }}</h3>
<p>{{ faq.desc }}</p>
</li>
{% endfor %}
</ul>
</div>
</section>