2025-02-11 09:26:53 +00:00
|
|
|
<h1 class="title">{{@article.title}}</h1>
|
2025-02-09 21:23:06 +00:00
|
|
|
|
2025-02-11 09:26:53 +00:00
|
|
|
<div class="content">
|
2025-02-16 22:03:56 +00:00
|
|
|
<parsedown>{{ @article.content | raw }}</parsedown>
|
2025-02-11 09:26:53 +00:00
|
|
|
</div>
|
2025-02-09 21:23:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-02-11 09:26:53 +00:00
|
|
|
<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>
|