File: /virtual/nagasaki/public_html/ec/src/Eccube/Resource/template/install/frame.twig
{#
This file is part of EC-CUBE
Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved.
http://www.lockon.co.jp/
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#}
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="{{ publicPath }}template/install/img/common/favicon.ico">
<title>ようこそ | EC-CUBEインストール</title>
<link href="{{ publicPath }}template/install/dist/css/bootstrap.min.css?v={{ constant('Eccube\\Common\\Constant::VERSION') }}" rel="stylesheet">
<link href="{{ publicPath }}template/install/assets/css/dashboard.css?v={{ constant('Eccube\\Common\\Constant::VERSION') }}" rel="stylesheet">
<script src="{{ publicPath }}template/install/assets/js/ie10-viewport-bug-workaround.js?v={{ constant('Eccube\\Common\\Constant::VERSION') }}"></script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<!-- ▼ #header ▼ -->
<header id="header" role="navigation">
<div class="navbar">
<div class="logo" href="./"><svg class="cb cb-logomark"><use xlink:href="#cb-logomark" /></svg><svg class="cb cb-logotext"><use xlink:href="#cb-logotext" /></svg></div>
</div>
</header>
<!-- ▲ #header ▲ -->
<div class="main_wrap">
<!-- ▼ #side ▼ -->
<aside id="side">
<div class="step_nav">
<ol>
<li{% if current >= 1 %} class="current"{% endif %}><span class="number">1</span>ようこそ</li>
<li{% if current >= 2 %} class="current"{% endif %}><span class="number">2</span>権限チェック</li>
<li{% if current >= 3 %} class="current"{% endif %}><span class="number">3</span>サイトの設定</li>
<li{% if current >= 4 %} class="current"{% endif %}><span class="number">4</span>データベースの設定</li>
<li{% if current >= 5 %} class="current"{% endif %}><span class="number">5</span>データベースの初期化</li>
<li{% if current >= 6 %} class="current"{% endif %}><span class="number">6</span>インストール完了</li>
</ol>
</div>
</aside>
<!-- ▲ #side ▲ -->
<!-- ▼ #main ▼ -->
{% block main %}{% endblock %}
<!-- ▲ #main ▲ -->
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="{{ publicPath }}template/install/assets/js/vendor/jquery-1.11.3.min.js"><\/script>')</script>
<script src="{{ publicPath }}template/install/dist/js/bootstrap.min.js?v={{ constant('Eccube\\Common\\Constant::VERSION') }}"></script>
<script src="{{ publicPath }}template/install/assets/js/function.js?v={{ constant('Eccube\\Common\\Constant::VERSION') }}"></script>
<script>
$(function() {
/*
* for svg icon
*/
$.ajax({
type: 'GET',
url: '{{ publicPath }}template/install/assets/img/svg.html',
dataType: 'html',
success: function(data){
$('body').prepend(data);
},
error: function() {
console.log('error');
}
});
});
</script>
</body>
</html>