統計
| ブランチ: | リビジョン:

pictcode / app / View / Layouts / procedure.ctp @ f8b79450

履歴 | 表示 | アノテート | ダウンロード (3.194 KB)

1 d6c3d8de root
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
	<meta charset="utf-8">
5
	<title>
6
		PictCode
7
		<?php echo $title_for_layout; ?>
8
	</title>
9
	<meta name="apple-mobile-web-app-capable" content="yes">
10
	<meta name="viewport" content="width=device-width, initial-scale=1.0,  maximum-scale=1.0, minimum-scale=1.0">
11
	<meta charset = "UTF-8">
12
	<meta http-equiv="pragma" content="public">
13
	<meta http-equiv="Cache-Control" content="public">
14
	<meta http-equiv="Expires" content="-1">
15
	<meta http-equiv="Expires" content="86400">
16
	<meta name="description" content="">
17
	<meta name="author" content="">
18
19
	<!-- Le styles -->
20
	<link rel="stylesheet" href="/css/bootstrap.min.css">
21
	<!-- Custom CSS -->
22 04e657a7 root
    <!-- <link href="/css/freelancer.css" rel="stylesheet"> -->
23 d6c3d8de root
	<link href = "/css/main.css" rel="stylesheet">
24
	<!-- <link href="/css/pictcode/bootstrap/bootstrap.css" rel="stylesheet" > -->
25
	<link href="/css/jquery-ui.min.css" rel="stylesheet" >	
26
27
	<!-- Custom Fonts -->
28
    <link href="/css/font-awesome/font-awesome.min.css" rel="stylesheet" type="text/css">
29
    <link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
30
    <link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
31
32
	<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
33
	<!--[if lt IE 9]>
34
	<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
35
	<![endif]-->
36
37
	<?php
38
	//echo $this->fetch('meta');
39
	//echo $this->fetch('css');
40
	?>
41
</head>
42
43
<body id="page-top" class="index">
44
	<header>
45
		<a href=""><img class="header_button left" type="button" src="/img/btn_header_004.png" alt=""></a>
46
		<img class="center" src="/img/header_title.png" alt="Pict Code">
47
		<a href=""><img class="header_button right" type="button" src="/img/btn_header_014.png" alt=""></a>
48
	</header>
49
50 031c5c49 hasegawa
<<<<<<< HEAD
51 d6c3d8de root
	<!-- メインコンテンツ -->
52
53 031c5c49 hasegawa
=======
54 d6c3d8de root
55 04e657a7 root
	<!-- メインコンテンツ -->
56 031c5c49 hasegawa
>>>>>>> 04e657a75b821f893c6ddacb39f018ca408978f1
57 d6c3d8de root
	<div class="container">
58
59
		<?php echo $this->fetch('content'); ?>
60
61
	</div><!-- /container -->
62
63 04e657a7 root
64 d6c3d8de root
	<!-- フッター -->
65
66
	<footer>
67
		<div id="wrapper">
68
			<ul>
69
				<li><a href="aboutthis.html" alt="">PictCodeについて</a></li>
70
				<li><a href="terms.html" alt="">利用規約</a></li>
71
				<li><a href="privacy.html" alt="">プライバシーポリシー</a></li>
72
				<li><a href="aboutus.html" alt="">運営会社情報</a></li>
73
				<li><a href="contact.html" alt="">お問い合わせ</a></li>
74
			</ul>
75
			<a href="index.html"><img class="logo" src="/img/footer_logo01.png" alt=""></a>
76
			<hr>
77
			<img class="logo" src="/img/footer_logo02.png" alt="">
78
		</div>
79
	</footer>
80
81
82
	<!-- Le javascript
83
	================================================== -->
84
	<!-- Placed at the end of the document so the pages load faster -->
85
	<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
86
	<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
87
	<script src="//google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
88
	<script src="/js/pictcode/require_config.js"></script>
89
	<script data-main="/js/pictcode/app.js" src="/js/pictcode/require.js"></script>
90
	<?php echo $this->fetch('script'); ?>
91
92
</body>
93
</html>