25 lines
704 B
HTML
25 lines
704 B
HTML
<h1 class="title">{{@article.title}}</h1>
|
|
<p><a href="/kb/{{ @article.id}}/edit">edit article</a></p>
|
|
<hr>
|
|
|
|
<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>
|