mirror of
https://github.com/sigmasternchen/kukkubukku
synced 2025-03-15 07:18:54 +00:00
24 lines
449 B
Text
24 lines
449 B
Text
<h1>{{ print "$name" }}</h1>
|
|
<ul>
|
|
{{ for t in $tags; do }}
|
|
<li>{{ print "$t" }}</li>
|
|
{{ done }}
|
|
</ul>
|
|
<p>
|
|
from <a href="/profile?id={{ print "$uid" }}">{{ print "$author" }}</a>
|
|
</p>
|
|
<table>
|
|
{{ for i in $(seq $nrIngredients); do }}
|
|
<tr>
|
|
<td>
|
|
{{ echo "$qts" | tail -n +$i | head -n 1 }}
|
|
</td>
|
|
<td>
|
|
{{ echo "$ingredients" | tail -n +$i | head -n 1 }}
|
|
</td>
|
|
</tr>
|
|
{{ done }}
|
|
</table>
|
|
<p>
|
|
{{ print "$description" }}
|
|
</p>
|