<?php $pagestart=microtime(get_as_float); /* Kajukkk ======== Dokuwiki template Kajukk Another DokuWiki responsive template using Twitter Bootstrap & font awesome. Supports for togglable dark theme to save energy of mobile phone. Supports various plugins like disqus, shoturl, avatar and searchformgoto. * @link https://github.com/dryoo/dokuwiki-template-kajukkk * @author S.C. Yoo <dryoo@live.com> * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) Related/supported plugins ------------------------- * Avatar https://www.dokuwiki.org/plugin:avatar * Disqus https://www.dokuwiki.org/plugin:disqus * Shorturl https://www.dokuwiki.org/plugin:shorturl * Searchformgoto https://www.dokuwiki.org/plugin:searchformgoto References ---------- * https://www.dokuwiki.org/devel:localization#template_localization * http://getbootstrap.com/ * http://www.torrentreactor.net/ */ if (!defined('DOKU_INC')) die(); /* must be run from within DokuWiki */ @require_once(dirname(__FILE__).'/tpl_functions.php'); /* include hook for template functions */ header('X-UA-Compatible: IE=edge'); // ì• ë“œì„¼ìŠ¤ì²˜ë¦¬ if (($ACT=="show")||($ACT=="showtag")) $noadsense=false; else $noadsense=true; if (p_get_metadata($ID,"adult")) $noadsense=true; ?> <!DOCTYPE HTML> <!--[if lt IE 9]> <html class="ie"> <![endif]--> <!--[if gte IE 9]> <html> <![endif]--> <!--[if !IE]><!--> <html lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>" class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <title><?php echo (p_get_first_heading($ID))?p_get_first_heading($ID):strrchr(':'.$INFO['id'],":"); ?><?php if (strrchr(':'.$INFO['id'],":")!=":".$conf['start']) echo ' - '.p_get_first_heading(':'.$INFO['namespace'].':'.$conf['start']).' - '.strip_tags($conf['title']); else echo ' - '.strip_tags($conf['tagline']) ?></title> <script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)</script> <link href="<?php echo tpl_getMediaFile(array("bs/bootstrap.min.css")); ?>" rel="stylesheet"> <?php tpl_metaheaders() ?> <meta name="description" content="<?php $_desc=p_get_metadata($ID,"description"); if ($_desc !=null) echo preg_replace( "/\r|\n/", "", mb_substr(htmlspecialchars(strip_tags($_desc['abstract'])),0,60,"utf-8")); ?>" > <!-- <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">--> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/v4-shims.css"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <?php echo tpl_favicon(array('favicon', 'mobile')) ?> <?php tpl_includeFile('meta.html') ?> <?php echo preg_replace( "/\r|\n/", "",tpl_getConf('google_analytics')); ?> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- <script src="<?php echo tpl_getMediaFile(array("js/respond.min.js")); ?>" type="text/javascript"></script>--> <!--[if lt IE 9]> <script src="<?php echo tpl_getMediaFile(array("js/html5shiv.js")); ?>" type="text/javascript"></script> <![endif]--> <?php if (tpl_getConf('debug')): ?> <!-- <script async src="//developers.kakao.com/sdk/js/kakao.min.js"></script> --> <?php endif;?> <?php if (($ACT!="edit")): ?> <!-------------------------------ìžë™ ê´‘ê³ --------------------------------> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <script> (adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-2592234474265189", enable_page_level_ads: true }); </script> <!-------------------------------/ìžë™ ê´‘ê³ --------------------------------> <?php endif;?> </head> <body class="<?php echo (get_doku_pref('dark', 0)==1)?'dark':''?>" > <div class="dokuwiki clearfix "> <div id="sidebar_bg"></div> <div id="nav_bg"></div> <nav id="dokuwiki__nav"> <!-- Nav page start--> <?php //if (tpl_getConf('debug')) @include('shortcut.php') /* Shortcut */ ?> <?php tpl_include_page(":nav", 1, 1) ?> <!-- Nav page end--> </nav> <div id="dokuwiki__top" class="mode_<?php echo $ACT ?> <?php echo ($showSidebar) ? 'showSidebar' : ''; ?> <?php echo ($hasSidebar) ? 'hasSidebar' : ''; ?>" > <?php tpl_flush(); ?> <header class="titlebar nav-down clearfix"> <div class="btn_left" href=""><i class="fa fa-bars"></i></div> <div class="btn_right" href="" style=""><i class="fa fa-info-circle"></i></div> <a class="btn_titlebar pull-left" href="<?php echo DOKU_URL?>"><?php echo strip_tags($conf['title'])?></a> <?php // mobile-alt tablet-alt laptop desktop ?> <?php if (tpl_getConf('debug')): ?> <a class="btn_titlebar pull-right" href="/tech/" style=""> <i class="fa fa-mobile-alt phone"></i> <i class="fa fa-tablet-alt tablet"></i> <i class="fa fa-laptop desktop"></i> <i class="fa fa-desktop wide"></i> </a> <a class="btn_titlebar pull-right" href="/med/" style=""><i class="fa fa-medkit"></i></a> <a class="btn_titlebar pull-right" href="/game/" style=""><i class="fa fa-gamepad"></i></a> <?php endif ?> <?php if (!plugin_isdisabled('searchformgoto')) { $searchformgoto = &plugin_load('helper','searchformgoto'); $searchformgoto->gotoform(); } else { tpl_searchform(); } ?> <?php if(!plugin_isdisabled('randompage')) {?> <a href="?do=randompage" class=" btn_titlebar " title="<?php echo tpl_getLang('randompage')?>"><i class="fa fa-random"></i></a> <?php }?> </header> <div class="core clearfix" > <?php ds_html_msgarea(); /* occasional error and info messages */ ?> <?php /* google adsense RESPONSIVE 윗쪽 */ if (!$noadsense) echo preg_replace( "/\r|\n/", "",tpl_getConf('google_adsense')); ?> <div id="dokuwiki__content"> <?php tpl_bs_breadcrumbs() ?> <?php if ($ACT=="show") tpl_include_page(tpl_getConf('nsheader'),true,true); /* page header */ ?> <?php if ((auth_quickaclcheck($ID) >= AUTH_EDIT)&&($ACT=="show")): ?> <div class="alert alert-info alert-dismissible" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button> <strong><?php echo strip_tags($conf['tagline']) ?></strong><?php echo tpl_getLang('haspermeditpage');?> </div> <?php endif; ?> <?php if(($ACT!="search"))tpl_button_a('edit','pencil','','editmain btn btn-danger pull-right noprint ');?> <!-- wikipage start --> <?php // ë„ì¿ ìœ„í‚¤ì˜ ê²€ìƒ‰ê²°ê³¼ë¥¼ 가로채서 구글 CSE ...ì¶œë ¥ // hijack dokuwiki search if ($ACT=="search"&&tpl_getConf('debug') ) {?> <h1>"<?php echo noNS($ID); ?>"ì— ëŒ€í•œ 검색 ê²°ê³¼</h1> <script> (function() { var cx = '015553187907637026800:6qohwwzkdqo'; var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//cse.google.com/cse.js?cx=' + cx; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s); })(); </script> <gcse:searchresults-only></gcse:searchresults-only> <?php } else tpl_content(true); ?> <!-- wikipage stop --> <div class="clearer"></div> <!-- Usage as a class --> <?php /*Backlinks 참조문서 ì¶œë ¥*/ if ((ft_backlinks($ID)!=null) && (strrchr(':'.$INFO['id'],":")!=":".$conf['start']) && (($ACT=='edit') or ($ACT=='preview') or ($ACT=="show") ) ) print '<h2>'.$lang['btn_backlink'].'</h2>'.p_render('xhtml',p_get_instructions('{{backlinks>.}}'),$info);?> <?php /* <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- ì¼ì¹˜í•˜ëŠ” 컨í…ì¸ --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-2592234474265189" data-ad-slot="6886466908" data-ad-format="autorelaxed"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> */?> <?php if (tpl_getConf('debug')): ?> <?php /************** SNS *************/ //$_url=rawurlencode(wl($ID,'',true)); $_url=$sURL; $_title= p_get_metadata($ID,"title"); $_tags=@implode(' #',p_get_metadata($ID, 'subject', METADATA_DONT_RENDER)); $_tags=($_tags)?" #".$_tags:null; //$_txt= " $_title ".wl($ID,'',true)." #".strip_tags($conf['title']).$_tags; $_txt= " $_title ".$_url." #".strip_tags($conf['title']).$_tags; ?> <!-- <div class="text-center noprint"> <i class="fa fa-hand-o-right"></i> <a href="#" class="btn-circle btn-primary slideTextUp" onclick="sendsns('facebook','<?php echo $_url; ?>','txt');return false;" title="페ë¶íŽŒ"><div><i class="fa fa-facebook"></i></div><div>페ë¶í‘¸ê¸°</div></a> <a href="#" class="btn-circle btn-info slideTextUp" onclick="sendsns('twitter','<?php //echo $_url; ?>','<?php echo $_txt;?>');return false;" title="트윗펌"><div><i class="fa fa-twitter"></i></div><div>트윗푸기</div></a> <a href="#" class="btn-circle btn-warning slideTextUp" onclick="sendsns('kakaotalk','<?php echo $_url; ?>','<?php echo $_txt;?>');return false;" title="카톡펌"><div>Kakao</div><div>카톡푸기</div></a> <a href="#" class="btn-circle btn-success slideTextUp" onclick="sendsns('band','<?php //echo $_url; ?>','<?php echo $_txt;?>');return false;" title="밴드펌"><div>Band</div><div>밴드푸기</div></a> <i class="fa fa-hand-o-left"></i> </div> --> <?php endif; ?> <?php /*미니문법설명*/ if (tpl_getConf('debug') && (($ACT=='edit')or ($ACT=='preview'))) print p_render('xhtml',p_get_instructions(' ^ **초미니 문법 설명** (í˜¹ì€ [[:syntax]]참조하세요) |||| ^ê°•ì¡°| %%**굵게**%%| %%//기울임//%% | %%__밑줄__%%| ^ì œëª©| ======ì œëª©1단계|=====ì œëª©2단계|====ì œëª©3단계 (뒤는 ìžë™)| ^목ë¡| _*_ 공백과 ì´ì•Œ 한개 (ì 목ë¡)|_-_ 공백과 빼기 (번호목ë¡)|| ^ì—°ê²°| %%[[ë‘ê°œì˜ ëŒ€ê´„í˜¸ë¡œ ì—°ê²°]]%%| %%URL%% í˜¹ì€ %%[[URL]]%%| %%[[URL|표시ë ì´ë¦„]]%%| ^표| %%|ì…€ ë‚´ìš©1|ì…€ ë‚´ìš©2|%% | %%^ì œëª©ë‚´ìš©1^ì œëª©ë‚´ìš©2^%% |í…Œì´ë¸” ëì— ê³µë°±ì´ ì˜¤ë©´ 안ë©ë‹ˆë‹¤| '),$info);?> <?php /* google adsense RESPONSIVE 아래 */ if (!$noadsense) echo preg_replace( "/\r|\n/", "",tpl_getConf('google_adsense')); ?> <?php if ($ACT=="show" ||$ACT=="edit"): ?> <div class="noprint"> <?php /* Short URL*/ if (!plugin_isdisabled("shorturl") && (auth_quickaclcheck($ID) >= AUTH_READ) && ($INFO['exists'])): $shorturl = plugin_load('helper', 'shorturl'); //$sURL= DOKU_URL.$shorturl->autoGenerateShortUrl($ID); print $shorturl->shorturlPrintLink($ID); ?> <?php endif /* Short URL*/?> </div> <?php endif?> <?php if (($ACT=="show")||($ACT=="edit")||($ACT=="preview")) tpl_license('badge', false, false, true); // license button, no wrapper ?> <div class="docInfo text-muted"> <?php echo tpl_pagesize($ID) ?> <?php tpl_pageinfo() ?> <?php $contributors =$INFO['meta']['contributor'];// p_get_metadata($ID, 'contributor' ); if ($contributors!=null) { //$contributors=array_unique(array_diff_assoc($contributors,array_unique($contributors))); foreach(array_unique($contributors) as $userid=>$usernick){ if ( strtolower($userid)=="v_l" || strtolower($userid)=="vaslor" ) { //echo '<a href="https://plus.google.com/102990262307362184016?rel=author" rel="publisher">'.$usernick.'</a> '; echo '<a href="/user/'.$userid.'">'.$usernick.'</a> '; } else { echo '<a href="/user/'.$userid.'">'.$usernick.'</a> '; } // $_contributors.="[[:user:".$userid."|".$usernick."]] "; // [[:user:id|name]]으로 ë§í¬í˜•성 } // print '<dt>작성ìž</dt><dd>'.p_render('xhtml',p_get_instructions($_contributors),$info).'</dd>'; }?> </div> <?php tpl_includeFile('pagefooter.html') ?> <?php include('tpl_footer.php') ?> <?php tpl_flush(); ?> </div> <!-- dokuwiki__content --> <?php /* *************디스커즈 disqus************* */ if($ACT == 'show' && (strrchr(':'.$INFO['id'],":")!=":".$conf['start']) ){ $disqus = &plugin_load('syntax','disqus'); if($disqus) echo $disqus->_disqus('vln'); } ?> <script id="dsq-count-scr" src="//vln.disqus.com/count.js" async></script> <!-- ********** sidebar ********** --> <aside><div id="dokuwiki__aside" class="lsb sidebar"> <?php tpl_logo();?> <div class="clearfix"></div> <?php tpl_title();?> <?php $today=':오늘:'.date("nì›”_jì¼"); if (page_exists($today)) { echo "<div class='text-center'>"; print p_render('xhtml',p_get_instructions('ì˜¤ëŠ˜ì€ [['.$today.']]'),$info); echo "</div>"; } ?> <div class="tools text-center"> <?php tpl_flush() ?> <?php if ($INFO['userinfo']!=""): /* If logged-in */?> <?php tpl_button_a('edit','pencil','','btn-info btn-circle slideTextUp');?> <a href="#" class="btn-circle btn-danger slideTextUp" data-target="#myModal" data-toggle="modal" title="Add new page"><div><i class="fa fa-plus"></i></div><div><?php echo tpl_getLang('newpage')?></div></a> <?php endif; ?> <?php tpl_button_a('history','history','','btn-primary btn-circle slideTextUp');?> <?php if(!plugin_isdisabled('randompage')) {?> <a href="?do=randompage" class="btn-circle btn-success slideTextUp" title="<?php echo tpl_getLang('randompage')?>"><div><i class="fa fa-random"></i></div><div><?php echo tpl_getLang('randompage')?></div></a> <?php }?> <a href="#" class="btn-circle btn-danger slideTextUp lightsaving" onclick="tpl_toggleLight();return false;" title="<?php echo tpl_getLang('energysaving')?>"><div><i class="fa fa-lightbulb-o"></i></div><div><?php echo tpl_getLang('energysaving')?></div></a> <?php tpl_button_a('login','sign-in','','btn-warning btn-circle slideTextUp');?> <?php if ($INFO['userinfo']!=""): /* If logged-in */?> <?php tpl_button_a('media','image','','btn-primary btn-circle slideTextUp');?> <?php //tpl_button_a('backlink','link','','btn-primary btn-circle slideTextUp');?> <?php //tpl_button_a('subscribe','envelope','','btn-primary btn-circle slideTextUp');?> <?php //tpl_button_a('recent','spinner','','btn-primary btn-circle slideTextUp');?> <?php tpl_button_a('admin','cog','','btn-default btn-circle slideTextUp');?> <?php endif; ?> <?php if (!plugin_isdisabled('move') && ($INFO['isadmin'])) {?> <a href="?do=admin&page=move_main" class="btn-circle btn-default slideTextUp" title="<?php echo tpl_getLang('movepage') ?>"><div><i class="fa fa-bolt"></i></div><div><?php echo tpl_getLang('movepage') ?></div></a> <?php } ?> <a href="#" class="btn-circle btn-danger slideTextUp" data-target="#helpModal" data-toggle="modal" title="<?php echo tpl_getLang('help')?>"><div><i class="fa fa-question"></i></div><div><?php echo tpl_getLang('help')?></div></a> </div> <div class="content"> <?php tpl_includeFile('sidebarheader.html') ?> <?php tpl_include_page($conf['sidebar'], 1, 1) /* Default Sidebar*/?> <?php tpl_include_page(tpl_getConf('lsb'),1,1) /* Bottom Sidebar */ ?> <?php tpl_includeFile('sidebarfooter.html') ?> </div> </div> </aside> </div> <!-- core --> </div></div><!-- /.dokuwiki --> <aside> <!-- Modal --> <div class="modal fade noprint" id="helpModal" tabindex="-1" role="dialog" aria-labelledby="helpModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title" id="helpModalLabel"><?php echo tpl_getLang('help')?></h4> </div> <div class="modal-body"> <?php tpl_include_page(tpl_getConf('help'),true,true); /* help page */ ?> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal"><?php echo $lang['js']['mediaclose'] ?></button> </div> </div> </div> </div> <!-- NEW page Modal --> <div class="modal fade noprint" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog "> <div class="modal-content"> <div class="modal-header "> <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button> <h4 class="modal-title" id="myModalLabel"><?php echo tpl_getLang('createnewpage')?></h4> </div> <div class="modal-body"> <form class="uk-form-horizontal" action="<?php echo tpl_basedir()?>newpage.php"> <input type="text" hidden name="DOKU_URL" value="<?php echo DOKU_URL?>"> <input type="text" hidden name="ns" value="<?php echo $INFO['namespace']?>"> <label class="label-control text-capitalize"><?php echo tpl_getLang('pagename')?></label><br> <input class="form-control" id="newpageid" name="title" type="text" required placeholder="<?php echo tpl_getLang('pagename')?>"> <br> <label class="label-control text-capitalize">ì„ íƒí•˜ì„¸ìš”</label><br> <?php //echo tpl_getLang('namespacedesc') ?> <!-- <code>ì´ë¦„공간:페ì´ì§€ì´ë¦„</code> 형ì‹ìœ¼ë¡œ ìž…ë ¥í•¨ìœ¼ë¡œì¨ ìƒˆ 페ì´ì§€ê°€ íŠ¹ì •í•œ ì´ë¦„ê³µê°„ì— ìœ„ì¹˜í•˜ë„ë¡ í• ìˆ˜ 있습니다. 아니면, ì•„ëž˜ì˜ ë‹¨ì¶”ì—서 ê³ ë¥´ì„¸ìš”. --> <div class="radio"> <label> <input type="radio" name="do" value="root" <?php echo ($INFO['namespace']=="")?"checked":""?> > <b>최ìƒìœ„(루트)</b>ì— ìƒˆ 문서를 ë§Œë“니다. <?php //echo tpl_getLang('namespacedesc1') ?> </label> </div> <div class="radio"> <label> <input type="radio" name="do" value="ns" <?php echo ($INFO['namespace']=="")?"disabled":"checked"?> > <?php printf (tpl_getLang('namespacedesc2'),$INFO['namespace'] ) ?> </label> </div> <?php if (tpl_getConf('debug')):?> <div class="radio"> <label> <input type="radio" name="do" value="namu" > <b>나무위키</b>ì˜ ë¬¸ì„œë¥¼ 변환한 ë’¤ 편집합니다. (CC BY-NC-SA 2.0 Kr) <?php //printf (tpl_getLang('namespacedesc2'),$INFO['namespace'] ) ?> </label> </div> <!-- <div class="radio"> <label> <input type="radio" name="do" value="enha" > <b>엔하위키미러</b>ì˜ ë¬¸ì„œë¥¼ 변환한 ë’¤ 편집합니다. (CC BY-NC-SA 2.0 Kr) <?php //printf (tpl_getLang('namespacedesc2'),$INFO['namespace'] ) ?> </label> </div>--> <?php endif;?> <div class="btn-group pull-right "> <input type="submit" class="btn btn-primary " value="<?php echo $lang['btn_create'] ?>"> <button type="button" class="btn btn-warning" data-dismiss="modal"><?php echo $lang['btn_cancel']?></button> </div> <div class="clearfix"></div> <input type="text" hidden name="back" value="<?php echo $ID?>"> </form> </div> </div> </div> </div> <!--NEW page Modal --> </aside> <script src="<?php echo tpl_getMediaFile(array("bs/bootstrap.min.js")); ?>" type="text/javascript"></script> <script> jQuery(document).ready(function() { jQuery(".dokuwiki table").addClass( "table" ); <?php if (($ACT=="edit")||($ACT=="preview")): /* 편집툴바 ì¡°ìž‘ */?> jQuery("#tool__bar").addClass( "btn-group" ); jQuery(".dokuwiki .toolbutton").addClass( "btn btn-default btn-sm" ); jQuery(".dokuwiki .editButtons button").addClass( "btn btn-default" ); jQuery("#edbtn__save").addClass( "btn-primary"); jQuery("#edbtn__preview").addClass( "btn-success"); <?php endif ?> <?php if (($ACT=="login")): /* ë¡œê·¸ì¸ ì¡°ìž‘ */?> jQuery("#dw__login").addClass( "form-group" ); jQuery("#dw__login input.edit").addClass( "form-control" ); jQuery("#dw__login button").addClass( "btn btn-default btn-primary" ); <?php endif ?> //jQuery(".tags span a").addClass( "badge" ); jQuery(".dokuwiki .secedit button").addClass("btn btn-default btn-xs pull-right"); /* [CSS+Javascript] 간단한 Back to top 버튼 넣기 */ jQuery('body').append('<div id="toTop"><i class="fa fa-angle-double-up fa-2x"></i></div>'); jQuery("#toTop").bind("click", function () {window.open('#dokuwiki__top','_self',false);}); //jQuery("#toTop").bind("click", function () {jQuery("body").animate({ scrollTop: 0 }, 200);}); jQuery(window).scroll(function () { if (jQuery(this).scrollTop() > 100) { jQuery('#toTop').fadeIn(); } else { jQuery('#toTop').fadeOut(); } }); /* http://blog.readiz.com/134 */ }); // Hide Header on on scroll down // http://jsfiddle.net/s6mLJ/9063/ var didScroll; var lastScrollTop = 0; var delta = 5; var navbarHeight = jQuery('header').outerHeight(); jQuery(window).scroll(function(event){ didScroll = true; }); setInterval(function() { if (didScroll) { hasScrolled(); didScroll = false; } }, 250); function hasScrolled() { var st = jQuery(this).scrollTop(); // Make sure they scroll more than delta if(Math.abs(lastScrollTop - st) <= delta) return; // If they scrolled down and are past the navbar, add class .nav-up. // This is necessary so you never see what is "behind" the navbar. if (st > lastScrollTop && st > navbarHeight){ // Scroll Down jQuery('header').removeClass('nav-down').addClass('nav-up'); } else { // Scroll Up if(st + jQuery(window).height() < jQuery(document).height()) { jQuery('header').removeClass('nav-up').addClass('nav-down'); } } lastScrollTop = st; } </script> <?php if (tpl_getConf('debug')): ?> <!--<script async src="<?php echo tpl_getMediaFile(array("js/sendsns.js")); ?>" type="text/javascript"></script> --> <?php endif;?> <div id="spot-im-root"></div> <?php /* spot-im community widget */ //echo tpl_getConf('spot-im')?> <?php /* server processing time */ ?> <div class="no"><?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templates */ ?></div> <div id="screen__mode" class="no"></div><?php /* helper to detect CSS media query in script.js */ ?> <?php printf("<p class='text-center small text-muted noprint'>%.3f seconds in processing this page on this powerful server.</p>",(microtime(get_as_float)-$pagestart));?> </body> </html>