50 lines
1.8 KiB
Smarty
50 lines
1.8 KiB
Smarty
{* Список записей блога *}
|
|
<!-- Хлебные крошки /-->
|
|
<ul class="breadcrumb">
|
|
<li><a href="/">Главная</a></li>
|
|
<li>{$page->name}</li>
|
|
</ul>
|
|
<!-- Хлебные крошки #End /-->
|
|
<!-- Заголовок /-->
|
|
<h1>{$page->header}</h1>
|
|
{$page->body}
|
|
{include file='pagination.tpl'}
|
|
|
|
{*
|
|
<!-- Статьи /-->
|
|
<div class="blog">
|
|
{foreach $posts as $post}
|
|
<div class="col-sm-12">
|
|
<div class="blog-article">
|
|
{if $post->image}<div class="blog-image"><a href="/repairs/{$post->url}/" class="w"><img class="img-thumbnail" src="{$post->image|resizepost:100:100}" title="{$post->name|escape}" alt="{$post->name|escape}" id="blogimg"/></a></div>{/if}
|
|
<div class="blog-title"><span class="badge">{$post->date|date|date_format:"%e %m %Y":"":"rus"}</span> <a data-act="{$post->id}" href="/repairs/{$post->url}/">{$post->name|escape}</a></div>
|
|
<div class="blog-annotation">{$post->annotation}</div>
|
|
</div>
|
|
</div>
|
|
{/foreach}
|
|
</div>*}
|
|
<!-- Статьи #End /-->
|
|
|
|
|
|
|
|
<div class="row repairs">
|
|
{foreach $posts as $post}
|
|
|
|
<div class="service-unit action-item col-sm-3">
|
|
<div class="service-box"><span class="badge d-none">{$post->date|date|date_format:"%e %m %Y":"":"rus"}</span>
|
|
<a href="/repairs/{$post->url}/" class="tumb">
|
|
{if $post->image}
|
|
<img src="{$post->image|resizepage:262:230:0:1}" title="{$post->name|escape}" alt="{$post->name|escape}" >
|
|
{else}
|
|
<img src="/files/page/default.jpg" alt="{$post->name|escape}">
|
|
{/if}
|
|
</a>
|
|
|
|
<a class="service-name" href="/repairs/{$post->url}/">{$post->name|escape}</a><div class="blog-annotation">{$post->annotation}</div>
|
|
</div>
|
|
</div>
|
|
{/foreach}
|
|
</div>
|
|
|
|
|
|
{include file='pagination.tpl'} |