1<?php 2/** 3 * DokuWiki Bootstrap3 Template: Badges 4 * 5 * @link http://dokuwiki.org/template:bootstrap3 6 * @author Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com> 7 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 8 */ 9 10global $conf; 11 12?> 13<!-- badges --> 14<div class="text-right"> 15 <ul id="dw__badges" class="list-inline hidden-print"> 16 17 <li> 18 <a href="https://www.dokuwiki.org/template:bootstrap3" title="Bootstrap template for DokuWiki" target="<?php echo $conf['target']['extern'] ?>"> 19 <img src="<?php echo tpl_basedir(); ?>images/bootstrap.png" width="20" alt="Bootstrap template for DokuWiki" /> 20 </a> 21 </li> 22 23 <li> 24 <a href="https://www.php.net" title="Powered by PHP" target="<?php echo $conf['target']['extern'] ?>"> 25 <img src="<?php echo tpl_basedir(); ?>images/php.png" width="20" alt="Powered by PHP" /> 26 </a> 27 </li> 28 29 <li> 30 <a href="http://validator.w3.org/check/referer" title="Valid HTML5" target="<?php echo $conf['target']['extern'] ?>"> 31 <img src="<?php echo tpl_basedir(); ?>images/html5.png" width="20" alt="Valid HTML5" /> 32 </a> 33 </li> 34 35 <li> 36 <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3" title="Valid CSS" target="<?php echo $conf['target']['extern'] ?>"> 37 <img src="<?php echo tpl_basedir(); ?>images/css3.png" width="20" alt="Valid CSS" /> 38 </a> 39 </li> 40 41 <li> 42 <a href="https://www.dokuwiki.org/" title="Driven by DokuWiki" target="<?php echo $conf['target']['extern'] ?>"> 43 <img src="<?php echo tpl_basedir(); ?>images/logo.png" width="20" alt="Driven by DokuWiki" /> 44 </a> 45 </li> 46 47 </ul> 48</div> 49<!-- /badges --> 50 51