-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
35 lines (29 loc) · 1.18 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
---
layout: default
title: "Utah Ember User Group"
---
<h1>Who are you?</h1>
<p>The Utah Ember Users Group ("UtahEmber") is a mostly informal collection of individuals interested in the Ember javascript framework.</p>
<h1>When do you meet?</h1>
<h2 id="slc">Salt Lake County</h2>
<p>4th Thursday of the month at 6:30 PM<br>
Instructure offices
</p>
<p>Schedule of meetups including notes for upcoming meetings at <a href='http://www.meetup.com/EmberJS-SLC/'>meetup.com</a></p>
<h1>How do I join?</h1>
<p>Utah Ember membership is free and with no obligations. Just show up to the meetings periodically, and you're welcome to call yourself a member of UtahEmber User Group.</p>
<h1>Want to discuss Ember.js?</h1>
<p>IRC: freenode #utahember</p>
{% if site.posts.size > 0 %}
<section style="posts">
<h1>Recent Posts</h1>
{% for post in site.posts limit:3 %}
<article>
<h2><a href="{{ post.url | replace:'.html','' }}">{{ post.title }}</a></h2>
{{ post.description | textilize }}
<p>Posted by <a href="http://github.com/{{ post.author }}">{{ post.author }}</a> on {{ post.date | date_to_string }}.</p>
</article>
{% endfor %}
<p><a href="/posts">More posts!</a></p>
</section>
{% endif %}