diff --git a/lib/tpl/dokuwiki/css/design.css b/lib/tpl/dokuwiki/css/design.css
index 9e76be6aee5a5ce02b9844c027918e8a4a80a08d..f80251dfe2eb0d19dd091f8f1fb49f12ff97aa0b 100644
--- a/lib/tpl/dokuwiki/css/design.css
+++ b/lib/tpl/dokuwiki/css/design.css
@@ -453,11 +453,17 @@
 #dokuwiki__footer > .pad {
     font-size: 0.875em;
 }
-#dokuwiki__footer div.license {
+#dokuwiki__footer div.license,
+#dokuwiki__footer div.footerbuttons {
     text-align: center;
 }
-#dokuwiki__footer .license img {
-    margin: 0 .5em 0 0;
-    float: none;
+#dokuwiki__footer div.license {
+    margin-bottom: 0.5em;
+}
+#dokuwiki__footer div.footerbuttons img {
+    opacity: 0.5;
 }
 
+#dokuwiki__footer div.footerbuttons a:hover img {
+    opacity: 1;
+}
diff --git a/lib/tpl/dokuwiki/images/button-css.png b/lib/tpl/dokuwiki/images/button-css.png
new file mode 100644
index 0000000000000000000000000000000000000000..706325e1c1b6f7f666a2f655b6874be1d3ee7dd4
Binary files /dev/null and b/lib/tpl/dokuwiki/images/button-css.png differ
diff --git a/lib/tpl/dokuwiki/images/button-donate.gif b/lib/tpl/dokuwiki/images/button-donate.gif
new file mode 100644
index 0000000000000000000000000000000000000000..bba284e214e3ff94657be76a4b399291bc55768d
Binary files /dev/null and b/lib/tpl/dokuwiki/images/button-donate.gif differ
diff --git a/lib/tpl/dokuwiki/images/button-dw.png b/lib/tpl/dokuwiki/images/button-dw.png
new file mode 100644
index 0000000000000000000000000000000000000000..97272d96841ff4488878a3c8908a1a32b58776ef
Binary files /dev/null and b/lib/tpl/dokuwiki/images/button-dw.png differ
diff --git a/lib/tpl/dokuwiki/images/button-php.gif b/lib/tpl/dokuwiki/images/button-php.gif
new file mode 100644
index 0000000000000000000000000000000000000000..19aefb08f5755ccddc1a20b5d352d5bfd33c864a
Binary files /dev/null and b/lib/tpl/dokuwiki/images/button-php.gif differ
diff --git a/lib/tpl/dokuwiki/images/button-rss.png b/lib/tpl/dokuwiki/images/button-rss.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2438043f4801a97122a2816f7f1fd47da4d91b9
Binary files /dev/null and b/lib/tpl/dokuwiki/images/button-rss.png differ
diff --git a/lib/tpl/dokuwiki/images/button-xhtml.png b/lib/tpl/dokuwiki/images/button-xhtml.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec686442cc1242d75bc95de7e48803f86f8c1862
Binary files /dev/null and b/lib/tpl/dokuwiki/images/button-xhtml.png differ
diff --git a/lib/tpl/dokuwiki/tpl_footer.php b/lib/tpl/dokuwiki/tpl_footer.php
index fcc9d21c7ca1272800d2f0208cbfeed2d2c81863..e6fb7661d8230fd9a6cdfb34fa8322d87316afd5 100644
--- a/lib/tpl/dokuwiki/tpl_footer.php
+++ b/lib/tpl/dokuwiki/tpl_footer.php
@@ -1,6 +1,19 @@
 <!-- ********** FOOTER ********** -->
 <div id="dokuwiki__footer"><div class="pad">
-    <?php tpl_license('button') /* content license, parameters: img=*badge|button|0, imgonly=*0|1, return=*0|1 */ ?>
+        <?php
+            $tgt = ($conf['target']['extern']) ? 'target="'.$conf['target']['extern'].'"' : '';
+            tpl_license(''); // text only
+        ?>
+
+    <div class="footerbuttons">
+
+        <?php tpl_license('button',true,false,false); // button, no wrapper?>
+        <a <?php echo $tgt?> href="http://www.dokuwiki.org/donate" title="Donate"><img src="<?php echo tpl_basedir(); ?>images/button-donate.gif" alt="Donate" width="80" height="15" /></a>
+        <a <?php echo $tgt?> href="http://www.php.net" title="Powered by PHP"><img src="<?php echo tpl_basedir(); ?>images/button-php.gif" width="80" height="15" alt="Powered by PHP" /></a>
+        <a <?php echo $tgt?> href="http://validator.w3.org/check/referer" title="Valid XHTML 1.0"><img src="<?php echo tpl_basedir(); ?>images/button-xhtml.png" width="80" height="15" alt="Valid XHTML 1.0" /></a>
+        <a <?php echo $tgt?> href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3" title="Valid CSS"><img src="<?php echo tpl_basedir(); ?>images/button-css.png" width="80" height="15" alt="Valid CSS" /></a>
+        <a <?php echo $tgt?> href="http://dokuwiki.org/" title="Driven by DokuWiki"><img src="<?php echo tpl_basedir(); ?>images/button-dw.png" width="80" height="15" alt="Driven by DokuWiki" /></a>
+    </div>
 </div></div><!-- /footer -->
 
 <?php _tpl_include('footer.html') ?>