23 lines
639 B
HTML

<h1 class="title">{{@article.title}}</h1>
<div class="content">
<parsedown>{{ @article.content | raw }}</parsedown>
</div>
<check if="{{ isset(@tags)}}">
<div class="box">
<table class="table is-bordered is-fullwidth">
<thead>
<tr><th class="has-width-200">Property</th><th>Value</th></tr>
</thead>
<tbody>
<repeat group="{{ @ticket }}" key="{{ @key }}" value="{{ @value }}">
<tr><td>{{@key}}</td> <td>{{@value}}</td></tr>
</repeat>
</tbody>
</table>
</div>
</check>