1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-26 03:30:48 +03:00

fix template topic

This commit is contained in:
Mzhelskiy Maxim 2017-02-14 20:25:29 +07:00
parent ebb3682c70
commit 9e67e789fd
2 changed files with 6 additions and 2 deletions

View file

@ -47,6 +47,10 @@
font-family: 'PT Sans', sans-serif;
font-size: 18px;
}
.ls-topic-blogs .ls-topic-blogs-item {
float: left;
margin-right: 5px;
}
.ls-topic-blogs a {
color: #000;
text-decoration: underline;

View file

@ -55,9 +55,9 @@
{/if}
{if $_blogs}
<ul class="{$component}-blogs">
<ul class="{$component}-blogs ls-clearfix">
{foreach $_blogs as $blog}
<a href="{$blog.url}">{$blog.title}</a>{if ! $blog@last}, {/if}
<li class="{$component}-blogs-item"><a href="{$blog.url}">{$blog.title}</a>{if ! $blog@last}, {/if}</li>
{/foreach}
</ul>
{/if}