mirror of
https://github.com/sigmasternchen/kukkubukku
synced 2025-03-15 07:18:54 +00:00
14 lines
259 B
Text
14 lines
259 B
Text
<h1>Hi</h1>
|
|
You are {{ print $username }}.<br />
|
|
|
|
<a href="/backend/new">New Recipe</a>
|
|
|
|
<ul>
|
|
{{ while read line; do }}
|
|
<li>
|
|
<a href="/recipe?id={{ echo "$line" | getColumns 1 }}">
|
|
{{ echo "$line" | getColumns 2 }}
|
|
</a>
|
|
</li>
|
|
{{ done }}
|
|
</ul>
|