Initial commit

This commit is contained in:
JoseluCross
2017-09-17 18:22:54 +02:00
commit 5531725cfe
135 changed files with 19288 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<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>