add public design files

This commit is contained in:
Alan
2026-02-15 18:29:53 +03:00
parent 446351622f
commit 818397acb7
486 changed files with 43323 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{* Список записей блога *}
<!-- Заголовок /-->
<h1>{$page->name}</h1>
{include file='pagination.tpl'}
<!-- Статьи /-->
<ul id="blog">
{foreach $posts as $post}
<li>
<h3><a data-post="{$post->id}" href="blog/{$post->url}">{$post->name|escape}</a></h3>
<p>{$post->date|date}</p>
<p>{$post->annotation}</p>
</li>
{/foreach}
</ul>
<!-- Статьи #End /-->
{include file='pagination.tpl'}