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
UTF-8
admin
img
js
commentform.tpl
comments.tpl
comments_by_author.tpl
config.inc.php
content.tpl
entries.tpl
entries_archives.tpl
entries_summary.tpl
index.tpl
info.txt
lang_cs.inc.php
lang_cz.inc.php
lang_de.inc.php
lang_en.inc.php
plugin_calendar.tpl
plugin_categories.tpl
plugin_commentsearch_searchresults.tpl
plugin_contactform.tpl
plugin_findmore.tpl
plugin_staticpage.tpl
plugin_staticpage_searchresults.tpl
plugin_staticpage_sidebar.tpl
preview.png
preview_fullsize.jpg
preview_iframe.tpl
sidebar.tpl
style.css
trackbacks.tpl
blue
bulletproof
carl_contest
competition
contest
default
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_xmlrpc.php
wfwcomment.php
LuckyCoinkydink/templates/2k11/plugin_categories.tpl
2012-04-18 15:33:43 +02:00

24 lines
1.0 KiB
Smarty

{if $is_form}
<form id="serendipity_category_form" action="{$form_url}" method="post">
{/if}
<ul class="plainList">
{foreach from=$categories item="plugin_category"}
<li id="category_{$plugin_category.categoryid}" class="category_depth{$plugin_category.catdepth}">
{if $is_form}
<input name="serendipity[multiCat][]" type="checkbox" value="{$plugin_category.categoryid}">
{/if}
{if !empty($category_image)}
<a class="serendipity_xml_icon" href="{$plugin_category.feedCategoryURL}"><img src="{$category_image}" alt="XML"></a>
{/if}
<a href="{$plugin_category.categoryURL}" title="{$plugin_category.category_description|escape}">{$plugin_category.category_name|escape}</a>
</li>
{/foreach}
</ul>
{if $is_form}
<input class="category_submit" name="serendipity[isMultiCat]" type="submit" value="{$CONST.GO}">
{/if}
<a class="category_link_all" href="{$form_url}?frontpage">{$CONST.ALL_CATEGORIES}</a>
{if $is_form}
</form>
{/if}