minor cleanup

This commit is contained in:
2026-01-30 11:24:23 +01:00
parent 90786557a2
commit 003d65cbe5
4 changed files with 3 additions and 21 deletions

View File

@@ -10,6 +10,7 @@
$lang['home'] = 'Startseite';
$lang['__background_site__'] = 'Farbe für den Seitenhintergrund (hinter dem Inhaltsbereich)';
$lang['__link__'] = 'Allgemeine Linkfarbe';
$lang['__luxtools_locationlink__'] = 'Farbe für Standort-Links in Luxtools';
$lang['__existing__'] = 'Farbe für Links zu existierenden Seiten';
$lang['__missing__'] = 'Farbe für Links zu nicht-existierenden Seiten';
$lang['__site_width__'] = 'Breite der ganzen Seite (kann eine beliebige Längeneinheit sein: %, px, em, ...)';

View File

@@ -4,6 +4,7 @@ $lang['home'] = 'Home';
// style.ini values
$lang['__background_site__'] = 'Color for the very background (behind the content box)';
$lang['__link__'] = 'The general link color';
$lang['__luxtools_locationlink__'] = 'Color for location links in Luxtools';
$lang['__existing__'] = 'The color for links to existing pages';
$lang['__missing__'] = 'The color for links to non-existing pages';
$lang['__site_width__'] = 'The width of the full site (can be any length unit: %, px, em, ...)';

View File

@@ -68,9 +68,8 @@ __border__ = "#ccc" ; @ini_border
; highlighted text (e.g. search snippets)
__highlight__ = "#ff9" ; @ini_highlight
; default link color
; links
__link__ = "#2b73b7" ; @ini_link
__luxtools_locationlink__ = "#b57d35" ; @ini_luxtools_locationlink
;--------------------------------------------------------------------------

View File

@@ -11,24 +11,5 @@ if (!defined('DOKU_INC')) die();
<!-- ********** FOOTER ********** -->
<footer id="dokuwiki__footer"><div class="pad">
<?php tpl_license(''); // license text ?>
<div class="buttons">
<?php
tpl_license('button', true, false, false); // license button, no wrapper
$target = ($conf['target']['extern']) ? 'target="' . $conf['target']['extern'] . '"' : '';
?>
<a href="https://www.dokuwiki.org/donate" title="Donate" <?php echo $target?>><img
src="<?php echo tpl_basedir(); ?>images/button-donate.gif" width="80" height="15" alt="Donate" /></a>
<a href="https://php.net" title="Powered by PHP" <?php echo $target?>><img
src="<?php echo tpl_basedir(); ?>images/button-php.gif" width="80" height="15" alt="Powered by PHP" /></a>
<a href="//validator.w3.org/check/referer" title="Valid HTML5" <?php echo $target?>><img
src="<?php echo tpl_basedir(); ?>images/button-html5.png" width="80" height="15" alt="Valid HTML5" /></a>
<a href="//jigsaw.w3.org/css-validator/check/referer?profile=css3" title="Valid CSS" <?php echo $target?>><img
src="<?php echo tpl_basedir(); ?>images/button-css.png" width="80" height="15" alt="Valid CSS" /></a>
<a href="https://dokuwiki.org/" title="Driven by DokuWiki" <?php echo $target?>><img
src="<?php echo tpl_basedir(); ?>images/button-dw.png" width="80" height="15"
alt="Driven by DokuWiki" /></a>
</div>
<?php tpl_includeFile('footer.html'); ?>
</div></footer><!-- /footer -->