-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
25 lines (22 loc) · 1.05 KB
/
index.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
---
layout: default
---
<div class="page-home">
<div class="maxw">
<article>
<h2 class="a11y-only">Presented at NebraskaJS:</h2>
<ul class="posts">
{% for post in site.posts %}
{% if post.author %}
{% assign authors = post.author | split: ' ' %}
{% assign author_count = authors|size %}
{% else %}
{% assign authors = '' %}
{% assign author_count = 0 %}
{% endif %}
<li><a href="{{ post.url }}"{% if post.bigtitle %} class="posts-bigtitle"{% endif %}>{% if authors %}<span class="avatar{% if author_count > 1 %} avatar-count-{{ author_count }}{% endif %}">{% for author in authors %}{% if site.data.presenters[author].avatar_url %}<img src="{{ site.data.presenters[author].avatar_url }}" alt="{{ site.data.presenters[author].name }}">{% endif %}{% endfor %}</span>{% endif %}{{ post.title }}</a>{% if post.videolength %} <span class="videolength">{{ post.videolength }}</span>{% endif %}</li>
{% endfor %}
</ul>
</article>
</div>
</div><!-- /.page-home -->