mirror of
https://github.com/safing/web
synced 2025-04-08 13:09:09 +00:00
15 lines
478 B
HTML
15 lines
478 B
HTML
---
|
|
layout: page_markdown
|
|
title: community-hub
|
|
heading: The Community Hub
|
|
exclude_community_snippet: true
|
|
---
|
|
<div class="community-hub">
|
|
{% for pitch in site.data.community_hub.communities %}
|
|
<a href="{{ pitch.url }}"{% if pitch.pending %}{% else %} target="_blank"{% endif %}>
|
|
{% comment %}0 = even (right text), 1 = odd (left text){% endcomment %}
|
|
{% assign modulo = forloop.index | modulo: 2 %}
|
|
{% include pitch.html %}
|
|
<a>
|
|
{% endfor %}
|
|
</div>
|