mirror of
https://shylinux.com/x/ContextOS
synced 2025-04-26 09:14:06 +08:00
12 lines
423 B
Cheetah
12 lines
423 B
Cheetah
|
|
{{define "table"}}<table class="story" data-scene='{{options . "scene"}}'
|
|
data-enjoy='{{options . "enjoy"}}' data-happy='{{options . "happy"}}'>{{range $i, $line := .|trans}}
|
|
{{if eq $i 0}}
|
|
<tr>{{range $i, $v := $line}}<th>{{$v}}</th>{{end}}</tr>
|
|
{{else}}
|
|
<tr>{{range $i, $v := $line}}<td>{{$v}}</td>{{end}}</tr>
|
|
{{end}}
|
|
{{end}}</table>{{end}}
|
|
|
|
{{define "code"}}<div>{{results .}}</div>{{end}}
|