Add missing .git suffix
[phpmyadmin-website.git] / templates / themes.tpl
blobc1642f9cebb1231a003b498c5661a0b0dd5b061e
1 <html xmlns:py="http://genshi.edgewall.org/" xmlns:xi="http://www.w3.org/2001/XInclude" py:strip="">
3 <py:def function="page_title">Themes</py:def>
4 <py:def function="page_rss">${rss_files}</py:def>
5 <py:def function="page_rss_title">phpMyAdmin file releases</py:def>
7 <div py:match="content" id="body">
8 <h2>Themes</h2>
9 <p>
10 phpMyAdmin supports themes since version 2.6.0. All themes are not compatible
11 with all phpMyAdmin versions; you should select below which version are you
12 using.
13 </p>
14 <p>
15 Please note that themes contain PHP code and you should download them only
16 from trusted servers. All themes available on this page have been checked by
17 one of phpMyAdmin team members.
18 </p>
19 <p>
20 To install a theme, unzip your downloaded theme into the directory /themes/ of
21 your phpMyAdmin folder. When you open phpMyAdmin, you should be able to select the theme.
22 Please read the documentation for more details.
23 </p>
24 <p>
25 You can try the themes in action on our <a
26 href="${base_url}try.${file_ext}">demo server</a>.
27 </p>
29 <h2>Submit Theme</h2>
30 <p>
31 You've made a new theme and you want to share it?  Please use our 
33 href="http://sourceforge.net/tracker/?atid=689412&amp;group_id=23067&amp;func=browse">theme
34 tracker on sourceforge.net</a> to post your theme. The team will check and prepare
35 your theme for downloading here.
36 </p>
38 <h2>Available Themes</h2>
39 <p>Select your phpMyAdmin version (requires JavaScript):
40 <a py:for="css in themecssversions" class="themelink" href="#${css.css}" onclick="show_theme('${css.css}')">${css.name}</a>
41 </p>
42     <div py:for="theme in themes" class="theme ${theme.classes}">
43         <h3>${theme.fullname}</h3>
44             <div class="themeimgborder">
45             <div class="themeimg">
46                 <a href="${base_url}${theme.imgname}"
47                 rel="lightbox[themes]" title="${theme.name}">
48                     <img src="${base_url}${theme.imgname}" alt="${theme.name} thumbnail" />
49                 </a>
50             </div>
51             </div>
52             <p>Released ${theme.date}, see <a href="${theme.notes}">release notes</a> for details.</p>
53             <p>Compatible with phpMyAdmin <strong>${theme.support}</strong>.</p>
54             <p py:if="theme.author">Author: ${theme.author}</p>
55             <p>${Markup(theme.info)}</p>
56             <ul class="dl">
57                 <li><a href="${theme.file.url}#!md5!${theme.file.md5}">${theme.file.name}</a> (${theme.file.humansize}, MD5: ${theme.file.md5})</li>
58             </ul> 
59     </div>
60     <div class="clearer"></div>
61 </div>
63 <xi:include href="_page.tpl" />
64 </html>