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_calendar.tpl
2011-11-28 07:44:46 +01:00

36 lines
1.4 KiB
Smarty

<table class="serendipity_calendar">
<thead>
<tr>
{foreach from=$plugin_calendar_dow item="dow"}
<th scope="col"><abbr title="{$dow.date|@formatTime:"%A":false}">{$dow.date|@formatTime:"%a":false}</abbr></th>
{/foreach}
</tr>
</thead>
<tfoot>
<tr>
<td class="prev">
{if $plugin_calendar_head.minScroll le $plugin_calendar_head.month_date}
<a href="{$plugin_calendar_head.uri_previous}">&larr;<span class="visuallyhidden"> {$CONST.BACK}</span></a>
{/if}
</td>
<td class="current_month" colspan="5">
<a href="{$plugin_calendar_head.uri_month}">{$plugin_calendar_head.month_date|formatTime:"%B '%y":false}</a>
</td>
<td class="next">
{if $plugin_calendar_head.maxScroll ge $plugin_calendar_head.month_date}
<a href="{$plugin_calendar_head.uri_next}"><span class="visuallyhidden">{$CONST.FORWARD} </span>&rarr;</a>
{/if}
</td>
</tr>
</tfoot>
<tbody>
{foreach from=$plugin_calendar_weeks item="week"}
<tr>
{foreach from=$week.days item="day"}
<td class="{$day.classes}"{if isset($day.properties.Title)} title="{$day.properties.Title}"{/if}>{if isset($day.properties.Active) and $day.properties.Active}<a href="{$day.properties.Link}">{/if}{$day.name|@default:"&#160;"}{if isset($day.properties.Active) and $day.properties.Active}</a>{/if}</td>
{/foreach}
</tr>
{/foreach}
</tbody>
</table>