forked from arkadianriver/spectral
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (56 loc) · 1.91 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
---
layout: landing
---
<!-- Banner -->
<section id="banner">
<div class="inner">
<h2>{{ site.title }}</h2>
<p>{{ site.description | markdownify }}</p>
<ul class="actions">
<li><a href="http://www.meetup.com/Austin-Web-Design/" class="button special">Join us on Meetup</a></li>
</ul>
</div>
<a href="#one" class="more scrolly">Next meeting details</a>
</section>
<section id="one" class="wrapper style1 special">
<div class="inner">
<header class="major">
{% for post in site.posts limit:1 %}
<h2 id="upcoming">{{ post.title }}</h2>
<p>{{ post.content}}</p>
{% endfor %}
</header>
<!-- UNCOMMENT FOR JAN 2017 meetup <h2>Sponsor</h2>
<p>Huge thanks to our <MONTH> sponsor, <a href="#">Sponsor Name!</a></p>
<img style="width:200px;" src="{{ site.url }}/images/sponsors/#.png">
</div> -->
</section>
<section id="three" class="wrapper style3 special">
<div class="inner">
<header class="major">
<h2 id="previous">Previous meetings</h2>
</header>
<ul class="features">
{% for post in site.posts offset:1 %}
<li>
<h3>{{ post.title }}</h3>
<p><em>{{ post.date | date: '%B %d, %Y' }}</em></p>
{{ post.excerpt | remove: '<p>' | remove: '</p>' }}
</li>
{% endfor %}
</ul>
</div>
</section>
<!-- CTA -->
<section id="cta" class="wrapper style4">
<div class="inner">
<header>
<h2 id="contact">Get in touch</h2>
<p>Interested in sponsoring or speaking? Let us know!</p>
</header>
<ul class="actions vertical">
<li><a href="mailto:[email protected]" class="button fit special">Sponsor</a></li>
<li><a href="mailto:[email protected]" class="button fit">Speak</a></li>
</ul>
</div>
</section>