| Line | |
|---|
| 1 |
##doc-module: A Skeleton HTML page template, that provides basic structure and utility methods. |
|---|
| 2 |
################################################################################ |
|---|
| 3 |
#extends Cheetah.Templates._SkeletonPage |
|---|
| 4 |
#implements respond |
|---|
| 5 |
################################################################################ |
|---|
| 6 |
#cache id='header' |
|---|
| 7 |
$docType |
|---|
| 8 |
$htmlTag |
|---|
| 9 |
<!-- This document was autogenerated by Cheetah(http://CheetahTemplate.org). |
|---|
| 10 |
Do not edit it directly! |
|---|
| 11 |
|
|---|
| 12 |
Copyright $currentYr - $siteCopyrightName - All Rights Reserved. |
|---|
| 13 |
Feel free to copy any javascript or html you like on this site, |
|---|
| 14 |
provided you remove all links and/or references to $siteDomainName |
|---|
| 15 |
However, please do not copy any content or images without permission. |
|---|
| 16 |
|
|---|
| 17 |
$siteCredits |
|---|
| 18 |
|
|---|
| 19 |
--> |
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
#block writeHeadTag |
|---|
| 23 |
<head> |
|---|
| 24 |
<title>$title</title> |
|---|
| 25 |
$metaTags |
|---|
| 26 |
$stylesheetTags |
|---|
| 27 |
$javascriptTags |
|---|
| 28 |
</head> |
|---|
| 29 |
#end block writeHeadTag |
|---|
| 30 |
|
|---|
| 31 |
#end cache header |
|---|
| 32 |
################# |
|---|
| 33 |
|
|---|
| 34 |
$bodyTag |
|---|
| 35 |
|
|---|
| 36 |
#block writeBody |
|---|
| 37 |
This skeleton page has no flesh. Its body needs to be implemented. |
|---|
| 38 |
#end block writeBody |
|---|
| 39 |
|
|---|
| 40 |
</body> |
|---|
| 41 |
</html> |
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
|
|---|