first
This commit is contained in:
0
layouts/_blank/_includes/_import.control.php
Normal file
0
layouts/_blank/_includes/_import.control.php
Normal file
45
layouts/_blank/_includes/_import.foot.php
Normal file
45
layouts/_blank/_includes/_import.foot.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<div id="_box_layer_"></div>
|
||||
<div id="_action_layer_"></div>
|
||||
<div id="_hidden_layer_"></div>
|
||||
<div id="_overLayer_"></div>
|
||||
|
||||
<iframe hidden name="_action_frame_<?php echo $m?>" width="0" height="0" frameborder="0" scrolling="no"></iframe>
|
||||
|
||||
<?php if($my['uid']&&$m=='admin') include $g['path_core'].'engine/notification.engine.admin.php'?>
|
||||
|
||||
<script>
|
||||
|
||||
(function ($) {
|
||||
'use strict'
|
||||
|
||||
$(function () {
|
||||
|
||||
var clipboard = new ClipboardJS('.js-clipboard');
|
||||
|
||||
clipboard.on('success', function (e) {
|
||||
$(e.trigger)
|
||||
.attr('title', '복사완료!')
|
||||
.tooltip('_fixTitle')
|
||||
.tooltip('show')
|
||||
.attr('title', '클립보드 복사')
|
||||
.tooltip('_fixTitle')
|
||||
|
||||
e.clearSelection()
|
||||
})
|
||||
|
||||
clipboard.on('error', function (e) {
|
||||
var modifierKey = /Mac/i.test(navigator.userAgent) ? '\u2318' : 'Ctrl-'
|
||||
var fallbackMsg = 'Press ' + modifierKey + 'C to copy'
|
||||
|
||||
$(e.trigger)
|
||||
.attr('title', fallbackMsg)
|
||||
.tooltip('_fixTitle')
|
||||
.tooltip('show')
|
||||
.attr('title', 'Copy to clipboard')
|
||||
.tooltip('_fixTitle')
|
||||
})
|
||||
|
||||
})
|
||||
}(jQuery))
|
||||
|
||||
</script>
|
||||
100
layouts/_blank/_includes/_import.head.php
Normal file
100
layouts/_blank/_includes/_import.head.php
Normal file
@@ -0,0 +1,100 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="apple-mobile-web-app-capable" content="no">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
|
||||
<meta name="robots" content="NOINDEX,NOFOLLOW">
|
||||
<title><?php echo $_HS['name']?></title>
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="<?php echo $g['s']?>/_core/images/ico/apple-touch-icon-144-precomposed.png">
|
||||
<link rel="shortcut icon" href="<?php echo $g['s']?>/_core/images/ico/favicon.ico">
|
||||
|
||||
<!-- bootstrap css -->
|
||||
<?php getImport('bootstrap','css/bootstrap.min','4.4.1','css')?>
|
||||
|
||||
<!-- jQuery -->
|
||||
<?php getImport('jquery','jquery.min','3.3.1','js')?>
|
||||
|
||||
<?php getImport('popper.js','umd/popper.min','1.14.0','js')?>
|
||||
|
||||
<!-- bootstrap js -->
|
||||
<?php getImport('bootstrap','js/bootstrap.min','4.4.1','js')?>
|
||||
|
||||
<!-- 시스템 폰트 -->
|
||||
<?php getImport('font-awesome','css/font-awesome','4.7.0','css')?>
|
||||
<?php getImport('font-kimsq','css/font-kimsq',false,'css')?>
|
||||
|
||||
<!-- 한글 NotoSans 폰트 -->
|
||||
<?php getImport('NotoSans','fonts','1.0','css')?>
|
||||
|
||||
<!-- is-loading : https://github.com/hekigan/is-loading-->
|
||||
<?php getImport('is-loading','jquery.isloading.min','1.0.6','js')?>
|
||||
|
||||
<!-- js-cookie : https://github.com/js-cookie/js-cookie -->
|
||||
<?php getImport('js-cookie','js.cookie.min','2.2.1','js')?>
|
||||
|
||||
<!-- bootstrap-notify : https://github.com/mouse0270/bootstrap-notify -->
|
||||
<?php getImport('bootstrap-notify','bootstrap-notify.min','3.1.3','js')?>
|
||||
|
||||
<?php getImport('clipboard','clipboard.min','2.0.4','js') ?>
|
||||
|
||||
<!-- bootstrap-toc : https://github.com/afeld/bootstrap-toc -->
|
||||
<?php getImport('bootstrap-toc','bootstrap-toc','1.0.1','css')?>
|
||||
<?php getImport('bootstrap-toc','bootstrap-toc.min','1.0.1','js')?>
|
||||
|
||||
<?php getImport('smooth-scroll','smooth-scroll.min','16.1.0','js') ?>
|
||||
|
||||
<!-- global css -->
|
||||
<link href="<?php echo $g['url_layout']?>/_css/style.css" rel="stylesheet">
|
||||
|
||||
<?php
|
||||
$g['incdir'] = $g['incdir']?$g['incdir']:$g['path_layout'].$d['layout']['dir'].'/_includes/';
|
||||
$g['wcache'] = $d['admin']['cache_flag']?'?nFlag='.$date[$d['admin']['cache_flag']]:'';
|
||||
$g['cssset'] = array
|
||||
(
|
||||
$g['dir_module'].'main'=>$g['url_module'].'/main',
|
||||
$g['dir_module_comm']=>$g['url_module_comm'],
|
||||
$g['dir_module_mode']=>$g['url_module_mode'],
|
||||
$g['dir_module_admin']=>$g['url_module_admin'],
|
||||
);
|
||||
?>
|
||||
|
||||
<script>
|
||||
var rooturl = '<?php echo $g['url_root']?>';
|
||||
var rootssl = '<?php echo $g['ssl_root']?>';
|
||||
var raccount= '<?php echo $r?>';
|
||||
var moduleid= '<?php echo $m?>';
|
||||
var memberid= '<?php echo $my['id']?>';
|
||||
var is_admin= '<?php echo $my['admin']?>';
|
||||
|
||||
// 알림 기본 셋팅값 정의
|
||||
$.notifyDefaults({
|
||||
placement: {
|
||||
from: "top",
|
||||
align: "right"
|
||||
},
|
||||
allow_dismiss: false,
|
||||
offset: 20,
|
||||
type: "success",
|
||||
timer: 100,
|
||||
delay: 1500,
|
||||
animate: {
|
||||
enter: "animated fadeInDown",
|
||||
exit: "animated fadeOutUp"
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<link href="<?php echo $g['s']?>/_core/css/sys.css<?php echo $g['wcache']?>" rel="stylesheet">
|
||||
<script src="<?php echo $g['s']?>/_core/js/sys.js<?php echo $g['wcache']?>"></script>
|
||||
|
||||
<?php foreach ($g['cssset'] as $_key => $_val):?>
|
||||
<?php if (is_file($_key.'.css')):?>
|
||||
<link href="<?php echo $_val?>.css<?php echo $g['wcache']?>" rel="stylesheet">
|
||||
<?php endif?>
|
||||
|
||||
<?php if (is_file($_key.'.js')):?>
|
||||
<script src="<?php echo $_val?>.js<?php echo $g['wcache']?>"></script>
|
||||
<?php endif?>
|
||||
<?php endforeach?>
|
||||
Reference in New Issue
Block a user