bundled-libs
deployment
docs
htmlarea
include
lang
plugins
sql
templates
blue
bulletproof
carl_contest
competition
contest
default
default-php
IMPORTANT-TODO
commentform.tpl
commentpopup.tpl
comments.tpl
content.tpl
entries.tpl
entries_archives.tpl
entries_summary.tpl
feed_0.91.tpl
feed_1.0.tpl
feed_2.0.tpl
feed_atom0.3.tpl
feed_atom1.0.tpl
feed_opml1.0.tpl
index.tpl
info.txt
plugin_calendar.tpl
plugin_categories.tpl
preview.png
preview_iframe.tpl
sidebar.tpl
template.inc.php
trackbacks.tpl
default-rtl
default-xml
idea
kubrick
moz-modern
mt-clean
mt-georgiablue
mt-gettysburg
mt-plainjane
mt-rusty
mt-stormy
mt-trendy
mt3-chalkboard
mt3-gettysburg
mt3-independence
mt3-squash
newspaper
wp
HOWTO
templates_c
tests
uploads
comment.php
exit.php
index.php
rss.php
serendipity.css.php
serendipity_admin.php
serendipity_admin_image_selector.php
serendipity_config.inc.php
serendipity_define.js.php
serendipity_editor.js
serendipity_xmlrpc.php
wfwcomment.php
13 lines
577 B
Smarty
13 lines
577 B
Smarty
<?php if ($GLOBALS['tpl']['is_raw_mode']): ?>
|
|
<div id="serendipity<?= $GLOBALS['tpl']['pluginside'] ?>SideBar">
|
|
<?php endif; ?>
|
|
<?php foreach($GLOBALS['tpl']['plugindata'] AS $item): ?>
|
|
<div class="serendipitySideBarItem container_<?= $item['class'] ?>">
|
|
<?php if ($item.title != ''): ?><h3 class="serendipitySideBarTitle <?= $item['class'] ?>"><?= $item['title'] ?></h3><?php endif; ?>
|
|
<div class="serendipitySideBarContent"><?= $item['content'] ?></div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
<?php if ($GLOBALS['tpl']['is_raw_mode']): ?>
|
|
</div>
|
|
<?php endif; ?>
|