Initial checkin
This commit is contained in:
commit
d75eb444fc
4304 changed files with 369634 additions and 0 deletions
25
modules/news/templates/coppertopia/news.tpl
Normal file
25
modules/news/templates/coppertopia/news.tpl
Normal file
|
@ -0,0 +1,25 @@
|
|||
<div id="posts-list" class="cf">
|
||||
<h2>News</h2>
|
||||
{foreach from=$news item=n}
|
||||
<article>
|
||||
<div class="feature-image">
|
||||
{if $n.picture!=""}<img src="/newsimages/{$n.picture}" alt="{$n.name}"/>{/if}
|
||||
<div class="entry-date">
|
||||
<div class="month">{$n.month}</div>
|
||||
<div class="number">{$n.day}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="excerpt">
|
||||
<a class="post-heading">{$n.title}</a>
|
||||
<p> {$n.text} </p>
|
||||
</div>
|
||||
<div class="meta">
|
||||
<span class="user">
|
||||
by {$n.username} on {$n.date}
|
||||
</span>
|
||||
</div>
|
||||
<i class="tape"></i>
|
||||
</article>
|
||||
{foreachelse}
|
||||
{/foreach}
|
||||
</div>
|
9
modules/news/templates/default/news.tpl
Normal file
9
modules/news/templates/default/news.tpl
Normal file
|
@ -0,0 +1,9 @@
|
|||
<h2>News</h2>
|
||||
{foreach from=$news item=n}
|
||||
<h3>{$n.title}</h3>
|
||||
<p class="post-by">Written by {$n.username} on {$n.date}</p>
|
||||
{if $n.picture!=""}<div class="newsimage"><img class="newsimage" src="/newsimages/{$n.picture}" alt="{$n.name}"/></div>{/if}
|
||||
{$n.text}
|
||||
{if $edituser!=""}<br /><font size="1pt">(zuletzt editiert am {$editdate}, von {$edituser})</font><br />{/if}
|
||||
{foreachelse}
|
||||
{/foreach}
|
Loading…
Add table
Add a link
Reference in a new issue