layout | title | redirect_from | permalink | published | date | last_modified_at | |
---|---|---|---|---|---|---|---|
default |
Meetups |
|
/meetup/ |
true |
2015-07-30 15:21:43 PST |
2017-05-25 01:31:54 PDT |
We congregate monthly to showcase, learn, share, & network. Most recently we've been meeting on either a Wed or Thu each month. But depending on venue restrictions, we mix it up. Please, join us.
{% assign secondloop = "false" %}
{% for post in site.posts %}
{% if forloop.first == true %}
{% assign rsvp_text = "Please R.S.V.P. for accurate headcount (food/drink)"%}
{% assign secondloop = "true" %}
{% elsif secondloop == "true" %}
{% assign secondloop = "false" %}
{% assign rsvp_text = "Link to old meetup"%}
{% endif %}
<article class="post">
<h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
<div class="entry">
{% if post.image %}
<a href="{{ site.baseurl }}{{ post.url }}">
<figure class="banner">
{% include mdr/banner_image.html %}
</figure></a>
{% endif %}
{% if secondloop == "true" %}<h4><a href="{{ post.rsvp }}" target="_blank" ref="nofollow">{{ rsvp_text }}</a></h4>{% endif %}
{{ post.excerpt }}
</div>
{% if secondloop == "true" %}
<em class="convince">Still need convincing it's going to be great? <a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read more</a></em>
{% endif %}
</article>
{% endfor %}