* @author Andreas Gohr * @link http://www.rocking-minds.org * @link http://www.dokuwiki.org/template:scanlines * @link http://www.dokuwiki.org/devel:templates * @link http://www.dokuwiki.org/devel:coding_style * @link http://www.dokuwiki.org/devel:environment * @link http://www.dokuwiki.org/devel:action_modes */ // must be run from within DokuWiki if (!defined('DOKU_INC')) die(); global $ACT; // include scanlines template functions require_once(dirname(__FILE__).'/tpl_functions.php'); ?> <?php tpl_pagetitle()?>[<?php echo strip_tags($conf['title'])?>] "; //include default or userdefined favicon // //note: since 2011-04-22 "Rincewind RC1", there is a core function named // "tpl_getFavicon()". But its functionality is not really fitting the // behaviour of this template, therefore I don't use it here exclusively. if (file_exists(DOKU_TPLINC."user/favicon.ico")){ //user defined - you might find http://tools.dynamicdrive.com/favicon/ //useful to generate one echo "\n\n"; }elseif (file_exists(DOKU_TPLINC."user/favicon.png")){ //note: I do NOT recommend PNG for favicons (cause it is not supported by //all browsers). echo "\n\n"; }else{ //default echo "\n\n"; } //include default or userdefined Apple Touch Icon (see for //details) if (file_exists(DOKU_TPLINC."user/apple-touch-icon.png")){ echo "\n"; }else{ //default echo "\n"; } //load userdefined js? if (tpl_getConf("scanlines_loaduserjs")){ echo "\n"; } /* old includehook */ @include(dirname(__FILE__).'/meta.html')?>