1<?php 2/** 3 * DokuWiki Hacker Template: CSS Asset 4 * 5 * @link https://www.dokuwiki.org/template:hacker.css 6 * @author Lionel PLAIS <lionel.plais@ilp-web.net> 7 * @license MIT License (https://opensource.org/license/MIT) 8 */ 9 10# Load doku_inc.php file 11# 12if (file_exists(dirname(__FILE__) . '/doku_inc.php')) { 13 require_once dirname(__FILE__) . '/doku_inc.php'; 14} 15 16if (! defined('DOKU_INC')) { 17 foreach ($doku_inc_dirs as $dir) { 18 if (! defined('DOKU_INC') && @file_exists("$dir/inc/init.php")) { 19 define('DOKU_INC', "$dir/"); 20 } 21 } 22} 23 24$font = tpl_getConf('font'); 25 26?>