This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/_sakura/templates/yuuno/main/credits.tpl

41 lines
1.3 KiB
Smarty
Raw Normal View History

2015-04-01 16:46:28 +00:00
{% include 'global/header.tpl' %}
<div class="content standalone markdown">
<h1>Credits</h1>
<p>This is the Flashii Sakura contributor list.</p>
<h3>People</h3>
<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{% for contribname, contributor in contributors %}
<tr>
<td><a href="{{ contributors[1] }}" target="_blank">{{ contribname }}</a></td>
<td>{{ contributors[0] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<h3>Tools</h3>
<table>
<thead>
<tr>
<th>Service</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{% for thirdName, thirdData in thirdParty %}
<tr>
<td><a href="{{ thirdData[1] }}" target="_blank">{{ thirdName }}</a></td>
<td>{{ thirdData[0] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% include 'global/footer.tpl' %}