source: extensions/skeleton/trunk/template/skeleton_page.tpl @ 27660

Last change on this file since 27660 was 24182, checked in by mistic100, 11 years ago

remove php end tags, remove at symbol in template, add example of class handlers, remove useless files

File size: 779 bytes
Line 
1{combine_css path=$SKELETON_PATH|@cat:"template/style.css"}
2
3{* <!-- add scripts here --> *}
4{footer_script require='jquery'}{literal}
5var reverse=0;
6$("#test").click(function() {
7  if (!reverse) {
8    $("body").css('-moz-transform','rotate(180deg)');
9    $("body").css('-webkit-transform','rotate(180deg)');
10    $("body").css('-o-transform','rotate(180deg)');
11    reverse=1;
12  } else {
13    $("body").css('-moz-transform','rotate(0deg)');
14    $("body").css('-webkit-transform','rotate(0deg)');
15    $("body").css('-o-transform','rotate(0deg)');
16    reverse=0;
17  }
18});
19{/literal}{/footer_script}
20
21{* <!-- add page content here --> *}
22<h1>{'What Skeleton can do for me?'|translate}</h1>
23<blockquote>
24  {$INTRO_CONTENT}
25</blockquote>
26
27<div id="test">{'Click for fun'|translate}</div>
Note: See TracBrowser for help on using the repository browser.