22 lines
643 B
HTML
22 lines
643 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>{:__('Title')}</th>
|
|
<th>{:__('Content')}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{volist name="row" id="vo" }
|
|
<tr>
|
|
<td>{:__($key)}</td>
|
|
<td>{$vo|htmlentities}</td>
|
|
</tr>
|
|
{/volist}
|
|
</tbody>
|
|
</table>
|
|
<div class="hide layer-footer">
|
|
<label class="control-label col-xs-12 col-sm-2"></label>
|
|
<div class="col-xs-12 col-sm-8">
|
|
<button type="reset" class="btn btn-primary btn-embossed btn-close" onclick="Layer.closeAll();">{:__('Close')}</button>
|
|
</div>
|
|
</div> |