diff options
Diffstat (limited to 'templates/pages/index.mako')
-rw-r--r-- | templates/pages/index.mako | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/pages/index.mako b/templates/pages/index.mako index 2fa3d2a..10c3cc7 100644 --- a/templates/pages/index.mako +++ b/templates/pages/index.mako @@ -3,6 +3,8 @@ %> <%inherit file="/page.mako" /> +<p style="color: #ff2c2c; font-size: medium;"><b>Important:</b> Portato does not work with current versions of portage. Hence I asked to remove it from Gentoo. I do not know, if I will ever make it work again. So please step up if you are interested in getting it running again.</p> + <p> Portato is a GUI for the package manager of <a href="http://www.gentoo.org">Gentoo</a> and <a href="http://www.sabayonlinux.org">Sabayon</a> - Portage. It is mostly written in <a href="http://www.python.org">Python</a> for the GTK+-frontend, which is used in most Linux desktop environments (except KDE). </p> @@ -52,3 +54,24 @@ emerge -av portato <li><a href="http://porthole.sourceforge.net/">Porthole</a> - also written in Python and using GTK+. This frontend inspired me to do my own ;). I also suggest this one as the alternative if Portato does not work as expected.</li> <li><a href="http://www.kuroo.org/">Kuroo</a> - a frontend especially aimed for the KDE environment. <em>(Development seems to have stopped)</em></li> </ul> + +<div id="dialog-message" title="Important Announcement"> + <p> + Portato does not work with current versions of portage. Hence I asked to remove it from Gentoo. + </p> + <p> I do not know, if I will ever make it work again. So please step up if you are interested in getting it running again. </p> +</div> + +<%def name="style()"> + ${parent.style()} + <script src=${"/static/js/jquery-1.7.1.min.js" | url} type="text/javascript"></script> + <script src=${"/static/js/jquery-ui-1.8.17.custom.min.js" | url} type="text/javascript"></script> + <link href=${"/static/css/vader/jquery-ui-1.8.17.custom.css" | url} rel="stylesheet" type="text/css" /> + <script> + $(function() { + $( "#dialog-message" ).dialog({ + modal: true + }); + }); + </script> +</%def> |