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">
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
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.
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.
25 You can try the themes in action on our <a
26 href="${base_url}try.${file_ext}">demo server</a>.
31 You've made a new theme and you want to share it? Please use our
33 href="http://sourceforge.net/tracker/?atid=689412&group_id=23067&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.
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>
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" />
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>
57 <li><a href="${theme.file.url}#!md5!${theme.file.md5}">${theme.file.name}</a> (${theme.file.humansize}, MD5: ${theme.file.md5})</li>
60 <div class="clearer"></div>
63 <xi:include href="_page.tpl" />