ブログ定番のカレンダーです。
最近のMovableTypeの標準のテンプレートではカレンダーは表示されないようなので以下のようなタグをテンプレートに挿入してください。
div class="module-calendar module"
h2 class="module-header"カレンダー/h2
div class="module-content table"
table summary="Monthly calendar with links to each day's posts"
caption
script language="JavaScript"!--
dat=new Date(); yea=dat.getYear(); if (yea 2000) yea = yea + 1900;mon=dat.getMonth(); if(mon==0){yea=yea-1;} document.write('a href="MTBlogURL'); document.write(yea);
if(mon == "0") { document.write('/12');}else if(mon "10") { document.write('/0'); document.write(mon);} else{ document.write('/'); document.write(mon);}
document.write('/index.php"≪/a ');
// --
/script
$MTDate format="%B %Y"$/caption
tr
th abbr="Sunday"Sun/th
th abbr="Monday"Mon/th
th abbr="Tuesday"Tue/th
th abbr="Wednesday"Wed/th
th abbr="Thursday"Thu/th
th abbr="Friday"Fri/th
th abbr="Saturday"Sat/th
/tr
MTCalendar
MTCalendarWeekHeadertr/MTCalendarWeekHeader
td
MTCalendarIfEntries
MTEntries lastn="1"
a href="$MTEntryPermalink$"$MTCalendarDay$/a
/MTEntries
/MTCalendarIfEntries
MTCalendarIfNoEntries
$MTCalendarDay$
/MTCalendarIfNoEntries
MTCalendarIfBlank /MTCalendarIfBlank/td
MTCalendarWeekFooter/tr/MTCalendarWeekFooter
/MTCalendar
/table
/div
/div