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>
2015-07-30 17:07:23 +00:00
<p>This is the Sakura contributor list.</p>
2015-04-01 16:46:28 +00:00
<h3>People</h3>
2015-04-01 16:48:49 +00:00
<table>
2015-04-01 16:46:28 +00:00
<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>
2015-04-01 16:47:29 +00:00
<td>{{ contributor[0] }}</td>
2015-04-01 16:46:28 +00:00
</tr>
{% endfor %}
</tbody>
</table>
<h3>Tools</h3>
2015-04-01 16:48:49 +00:00
<table>
2015-04-01 16:46:28 +00:00
<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' %}