-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathposts.html
More file actions
32 lines (31 loc) · 1001 Bytes
/
posts.html
File metadata and controls
32 lines (31 loc) · 1001 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
28
29
30
31
32
---
layout: base
title: Posts archive
meta:
description: An archive of past Austin JavaScript posts and meetups.
---
<div class="content">
<h1>{{ title }}</h1>
<p>{{ meta.description }}</p>
<ul>
{% for post in collections.posts | reverse %}
<li>
<a href="{{ post.url | url }}">
{{ post.inputPath.replace('./_meetups/', '').replace('./_posts/', '').substring(0, 10) }}:
<span class="has-text-weight-semibold">{{ post.data.title }}</span>
{{ '[post]' if post.fileSlug != 'meetup' }}
{% if post.data.video %}
<span class="icon tooltip" title="video available">
<ion-icon src="{{ '/assets/ionicon/videocam.svg' | url }}"></ion-icon>
</span>
{% endif %}
{% if post.data.slides %}
<span class="icon tooltip" title="slides available">
<ion-icon src="{{ '/assets/ionicon/albums.svg' | url }}"></ion-icon>
</span>
{% endif %}
</a>
</li>
{% endfor %}
</ul>
</div>