crm-rush/api/modules/main/index.html

22 lines
803 B
HTML
Executable File

{include file=$header}
<div class="row">
<div class="col-md-6">
<h1>Новости минздрава Свердловской области</h1>
<table class="table">
{section name=customer loop=$news}
<tr><td><img src='{$news[customer].img}' style="width: 250px;"></td><td>
<a href="{$news[customer].massiv.link}">{$news[customer].massiv.title}</a>
<hr>
<small>{$news[customer].massiv.pubDate}</small>
</td></tr>
{/section}
</table>
</div>
<div class="col-md-6">
<h1>События Санатория Руш</h1>
<button type="button" class="btn btn-secondary">Добавить</button>
</div>
</div>
{include file=$footer}