-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathchallenges.html
More file actions
27 lines (19 loc) · 879 Bytes
/
challenges.html
File metadata and controls
27 lines (19 loc) · 879 Bytes
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
---
profile: false
title: "Welcome to Code and Coffee, Long Beach"
permalink: challenges/
---
<h1>Challenges</h1>
<p>Every weekend Code && Coffee has a variety of activities, including group discussions, lightning talks, and - ocassionally - challenges. Challenges should be fun and offer something interesting to every skill level.</p>
<div id="challenge_list" class="content_box">
<h3>our challenges...</h3>
{% for post in site.posts %}
{% if post.category == 'challenge' %}
{% assign author = site.authors[post.author] %}
{{ author.display_name }}
<h4><a href="{{ post.url }}">{{ post.title }}</a> <span class="post-date">{{ post.date | date:"%b %d %Y" }}</span></h4>
{% endif %}
{% endfor %}
</div>
<p>If you have an idea for a new challenge, send @rogerhoward a private message (to avoid spoilers).</p>
{% include footer.html %}