Files
CodeShare/Source/assets/html/codebox.twig
2017-09-17 18:22:54 +02:00

36 lines
1020 B
Twig

<table style="width: 100%; text-align:center">
<tr>
<th>
<a href="?page=code&id={{ code.idc }}&lang={{ code.lang }}&version={{ code.version }}">{{ code.name }}</a>
</th>
</tr>
<tr>
<td><strong>Author:</strong>&nbsp{{ code.nick }} <strong> Version: </strong>{{ code.version }} <strong>
Lang: </strong>{{ code.lLang }}</td>
</tr>
{% if code.extlib is not null %}
<tr>
<td>
<strong>External library:</strong>&nbsp{{ code.extlib }}
{% if code.extlibver is not null %}
<strong> Version used: </strong>{{ code.extlibver }}
{% endif %}
</td>
</tr>
{% endif %}
<tr>
<th colspan="6">Description</th>
</tr>
<tr>
<td colspan="6">{{ code.description }}</td>
</tr>
<tr>
<th colspan="6">Code</th>
</tr>
<tr>
<td colspan="6">
<pre><code class='{{ code.lang }} codeto'>{{ code.code }}</code></pre>
</td>
</tr>
</table>