mirror of
https://gitlab.com/CodeSolutionsProject/CodeShare.git
synced 2026-02-14 17:11:34 +01:00
36 lines
1020 B
Twig
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> {{ 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> {{ 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>
|