65 lines
1.2 KiB
Cheetah
Executable file
65 lines
1.2 KiB
Cheetah
Executable file
#CalendarPrintMonth0001
|
|
#create
|
|
#namespace:Calendar/Print/Month
|
|
#url:default-calendar-print-month
|
|
#title:Default Calendar Print Month
|
|
#menuTitle:Default Calendar Print Month
|
|
<div class="calHeader">
|
|
<tmpl_var monthName> <tmpl_var year>
|
|
</div>
|
|
|
|
<table cellspacing="0" cellpadding="4" id="printableCal" border="0">
|
|
<tmpl_loop weeks><tmpl_loop days><tmpl_if events>
|
|
<tr>
|
|
<td class="label"><tmpl_var monthName> <tmpl_var dayMonth></td>
|
|
<td>
|
|
<ul>
|
|
<tmpl_loop events><li><tmpl_var eventTitle></li>
|
|
</tmpl_loop>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
</tmpl_if></tmpl_loop></tmpl_loop>
|
|
</table>
|
|
|
|
<div class="calFooter">
|
|
© Plain Black 2006
|
|
</div>
|
|
~~~
|
|
<style type="text/css">
|
|
.calHeader {
|
|
font-size:22px;
|
|
font-weight:bold;
|
|
text-align:right;
|
|
border-bottom:double #666 3px;
|
|
width:65%;
|
|
font-family:arial;
|
|
}
|
|
#printableCal {
|
|
font-family:arial;
|
|
font-size:13px;
|
|
width:65%;
|
|
border:solid #aaa 1px;
|
|
border-top-style:none;
|
|
}
|
|
#printableCal .label {
|
|
font-weight:bold;
|
|
font-size:13px;
|
|
vertical-align:top;
|
|
width:15%;
|
|
}
|
|
#printableCal ul {
|
|
margin:0px;
|
|
padding:0px;
|
|
padding-left:16px;
|
|
}
|
|
#printableCal .alt {
|
|
background-color:#eee;
|
|
}
|
|
.calFooter {
|
|
width:65%;
|
|
text-align:center;
|
|
font-size:10px;
|
|
font-family:arial;
|
|
}
|
|
</style>
|