1
0
This repository has been archived on 2025-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
bundled-libs
deployment
docs
htmlarea
include
lang
plugins
sql
templates
2k11
blue
bulletproof
carl_contest
competition
contest
default
YahooUI
admin
img
treeview
atom.css
commentform.tpl
commentpopup.tpl
comments.tpl
comments_by_author.tpl
content.tpl
dragdrop.js
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
htmlarea.css
imgedit.js
index.tpl
info.txt
plugin_calendar.tpl
plugin_categories.tpl
preview.png
preview_fullsize.jpg
preview_iframe.tpl
sidebar.tpl
style.css
style_fallback.css
trackbacks.tpl
default-php
default-rtl
default-xml
idea
kubrick
moz-modern
mt-clean
mt-georgiablue
mt-gettysburg
mt-plainjane
mt-rusty
mt-trendy
mt3-chalkboard
mt3-gettysburg
mt3-independence
mt3-squash
newspaper
wp
HOWTO
jquery.js
templates_c
tests
uploads
.gitignore
README.markdown
checksums.inc.php
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
LuckyCoinkydink/templates/default/plugin_categories.tpl

32 lines
1.3 KiB
Smarty

{if $is_form}
<form id="serendipity_category_form" action="{$form_url}" method="post">
<div id="serendipity_category_form_content">
{/if}
<ul id="serendipity_categories_list" style="list-style: none; margin: 0px; padding: 0px">
{foreach from=$categories item="plugin_category"}
<li class="category_depth{$plugin_category.catdepth} category_{$plugin_category.categoryid}" style="display: block;">
{if $is_form}
<input style="width: 15px" type="checkbox" name="serendipity[multiCat][]" value="{$plugin_category.categoryid}" />
{/if}
{if !empty($category_image)}
<a class="serendipity_xml_icon" href="{$plugin_category.feedCategoryURL}"><img src="{$category_image}" alt="XML" style="border: 0px" /></a>
{/if}
<a href="{$plugin_category.categoryURL}" title="{$plugin_category.category_description|escape}" style="padding-left: {$plugin_category.paddingPx}px">{$plugin_category.category_name|escape}</a>
</li>
{/foreach}
</ul>
{if $is_form}
<div class="category_submit"><input type="submit" name="serendipity[isMultiCat]" value="{$CONST.GO}" /></div>
{/if}
<div class="category_link_all"><a href="{$form_url}?frontpage" title="{$CONST.ALL_CATEGORIES}">{$CONST.ALL_CATEGORIES}</a></div>
{if $is_form}
</div>
</form>
{/if}