1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-06 22:11:32 +00:00

about dialog, UI tweaks

This commit is contained in:
Andrew Dolgov
2011-04-18 16:29:10 +04:00
parent ff9e70af47
commit da497babda
5 changed files with 63 additions and 91 deletions

View File

@@ -954,6 +954,36 @@
}
if ($id == "about") {
print "<table width='100%'><tr><td align='center'>";
print "<img src=\"images/logo_big.png\">";
print "</td>";
print "<td width='70%'>";
print "<h1>Tiny Riny RSS</h1>
<strong>Version ".VERSION."</strong>
<p>Copyright &copy; 2005-".date('Y')."
<a target=\"_blank\" class=\"visibleLink\"
href=\"http://fakecake.org/\">Andrew Dolgov</a>
and other contributors.</p>
<p class=\"insensitive\">Licensed under GNU GPL version 2.</p>";
print "<p class=\"insensitive\">
<a class=\"visibleLink\" target=\"_blank\"
href=\"http://tt-rss.org/\">Official site</a> &mdash;
<a href=\"http://tt-rss.org/redmine/wiki/tt-rss/Donate\"
target=\"_blank\" class=\"visibleLink\">
Support the project.</a></p>";
print "</td></tr>";
print "</table>";
print "<div align='center'>";
print "<button dojoType=\"dijit.form.Button\"
type=\"submit\">".
__('Close this window')."</button>";
print "</div>";
}
print "</dlg>";
}