-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathauthors.html
More file actions
27 lines (27 loc) · 893 Bytes
/
authors.html
File metadata and controls
27 lines (27 loc) · 893 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
---
layout: page
title: Authors
description: Browse authors and contributors behind assets and community resources published on the Defold website.
---
<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" alt="Authors section icon" loading="lazy" decoding="async"/></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 class="grid-200">
{%- 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>