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

Last change on this file since 28650 was 28650, checked in by mistic100, 10 years ago

update for 2.7

File size: 691 bytes
Line 
1{* <!-- load CSS files --> *}
2{combine_css id="skeleton" path=$SKELETON_PATH|cat:"template/style.css"}
3
4{* <!-- load JS files --> *}
5{* {combine_script id="skeleton" require="jquery" path=$SKELETON_PATH|cat:"template/script.js"} *}
6
7{* <!-- add inline JS --> *}
8{footer_script require="jquery"}
9  jQuery('#skeleton').on('click', function(){
10    alert('{'Hello world!'|translate}');
11  });
12{/footer_script}
13
14{* <!-- add inline CSS --> *}
15{html_style}
16  #skeleton {
17    display:block;
18  }
19{/html_style}
20
21
22{* <!-- add page content here --> *}
23<h1>{'What Skeleton can do for me?'|translate}</h1>
24
25<blockquote>
26  {$INTRO_CONTENT}
27</blockquote>
28
29<div id="skeleton">{'Click for fun'|translate}</div>
Note: See TracBrowser for help on using the repository browser.