forked from defold/defold.github.io
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
authors.html
26 lines (26 loc) · 803 Bytes
/
authors.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
---
layout: page
title: Authors
---
<div class="section">
<div class="container">
<div class="row">
<div class="columns two"><img src="/images/icons/community-assets-on-dark.svg" style="max-width: 150px"/></div>
<div class="columns ten">
<h1>Authors</h1>
<p>The creators of all things great!</p>
</div>
</div>
<div class="row" style="margin-bottom: 30px;">
</div>
<div class="row" style="margin-bottom: 30px;">
<div class="columns twelve">
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); grid-gap: 0 1rem;">
{%- for author in site.data.authorindex -%}
<div><a href="/authors/{{ author.id }}">{{ author.name }}</a> ({{ author.assets.size }})</div>
{%- endfor -%}
</div>
</div>
</div>
</div>
</div>