forked from lugorguk/lug.org.uk-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
East.html
32 lines (32 loc) · 1.2 KB
/
East.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
---
title: East LUGs
layout: default
permalink: /lugs/East/
is_regional: yes
---
<table width=100%>
<thead>
<tr>
<th>Title</th>
<!-- <th>Website</th> -->
<th>Established</th>
<th>Status</th>
<th>Last updated</th>
<th>Region</th>
</tr>
</thead>
<tbody>
{% assign sortedPosts = site.categories.East | sort: 'title' %}{% for post in sortedPosts %}
<tr{% cycle ' style="background-color: #f2f2f2"','' %}>
<th><a href="{{ post.url }}">{{ post.title | escape }}</a></th>
<!-- <td>{% if post.website and post.website != '' %}<a href="{{ post.website }}">{{ post.website }}</a>{% endif %}</td> -->
<td>{% if post.established_date and post.established_date != '' %}{{ post.established_date | date: "%Y/%m" }}{% endif %}</td>
<td>{{ post.status | default: 'Active' }}</td>
<td>{% if post.last_update and post.last_update != '' %}{{ post.last_update | date: "%Y/%m" }}{% endif %}</td>
<td><a href="/lugs/{{ post.categories | default: 'Virtual' }}">{{ post.categories | default: 'Virtual' }}</a></td>
</tr>
{% else %}
<tr><td colspan=6>No LUGS</td></tr>
{% endfor %}
</tbody>
</table>