Move git RSS link to github
[phpmyadmin-website.git] / templates / _sample_.tpl
blob35cab14ac3e503fcdd76f0737c3629c6b6bf9b7e
1 <!--!  Sample page for creating new ones -->
2 <html xmlns:py="http://genshi.edgewall.org/" xmlns:xi="http://www.w3.org/2001/XInclude" py:strip="">
4 <!--! Define this function to set page title -->
5 <py:def function="page_title">Page title</py:def>
6 <!--! Define this to URL for RSS feed for this page -->
7 <py:def function="page_rss">${rss_news}</py:def>
9 <!--! This way we inject content into template body -->
10 <div py:match="content" id="body">
12     <!--! We can include another templates -->
13     <xi:include href="_littleboxes.tpl" />
15     <p>Content...</p>
17 </div>
19 <!--! At the end we include main page template -->
20 <xi:include href="_page.tpl" />
22 </html>