-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (58 loc) · 2.76 KB
/
index.html
File metadata and controls
81 lines (58 loc) · 2.76 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
---
layout: layout
---
<article class="upcoming">
<div class="background-container">
<h2>Next Meetup</h2>
{% for item in site.posts limit:5 %}
{% if forloop.first %}
{% if item.hasNotes %}
<a href="{{ item.url }}" title="{{ item.title }}">
{% endif %}
<h3 class="event-header">{{ item.title }}{% if item.eventDate %}<small class="event-date"> - {{ item.eventDate }}</small>{% endif %}</h3>
{% if item.eventLocation %}<p class="event-location">{{ item.eventLocation }}</p>{% endif %}
{% if item.hasNotes %}
</a>
{% endif %}
<p>{{ item.description }}</p>
{% if item.link %}<a class="button" href="{{ item.link }}">{{ item.linkText }}</a>{% endif %}
<br>
<h4>Past Meetups</h4>
{% else %}
{% if forloop.index == 2 %}<ul>{% endif %}
<li>
{% if item.hasNotes %}
<a href="{{ item.url }}" title="{{ item.title }}">
{% endif %}
{{ item.title }}
{% if item.hasNotes %}
</a>
{% endif %}
</li>
{% if forloop.last %}</ul>{% endif %}
{% endif %}
{% endfor %}
</div>
</article>
<article class="events">
<div class="background-container">
<h2>Have an idea for a talk?</h2>
<p>We'd love to hear your ideas. We are constantly looking for quality content for our User Group.</p>
<p>Join #memtech below and hit us up in the the #webworkers channel.</p>
<a class="button" href="http://www.memphistechnology.org/blog/2015/05/19/join-memtech-on-slack-chat/" title="Chat with us on Slack">Join the Community »</a>
</div>
<div class="background-container">
<h2>Chat with Web Workers</h2>
<p>The Web Workers currently utilize the #memtech community Slack. We have our own channel, but there's also plenty of folks and other topics to join in!</p>
<a class="button" href="http://www.memphistechnology.org/blog/2015/05/19/join-memtech-on-slack-chat/" title="Chat with us on Slack">Join the Community »</a>
</div>
</article>
<article class="footer">
<h2>Our Sponsors</h2>
<div class="background-container">
<div class="logos">
<a href="http://www.vaco.com/memphis"><img src="/img/sponsors/vaco.png" alt="Vaco Memphis"></a>
<a href="http://memphistechnology.org"><img src="/img/sponsors/mtf-logo.png" alt="Memphis Technology Foundation"></a>
</div>
</div>
</article>