pictcode / app / View / Layouts / top.ctp @ c69e6898
履歴 | 表示 | アノテート | ダウンロード (2.564 KB)
1 |
<!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="viewport" content="width=device-width, initial-scale=1.0"> |
10 |
<meta name="description" content=""> |
11 |
<meta name="author" content=""> |
12 |
|
13 |
<!-- Le styles --> |
14 |
<link rel="stylesheet" href="/css/bootstrap.min.css"> |
15 |
<!-- Custom CSS --> |
16 |
<link href="/css/freelancer.css" rel="stylesheet"> |
17 |
|
18 |
<!-- Custom Fonts --> |
19 |
<link href="/css/font-awesome/font-awesome.min.css" rel="stylesheet" type="text/css"> |
20 |
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css"> |
21 |
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css"> |
22 |
|
23 |
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements --> |
24 |
<!--[if lt IE 9]> |
25 |
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> |
26 |
<![endif]--> |
27 |
|
28 |
<?php |
29 |
//echo $this->fetch('meta'); |
30 |
//echo $this->fetch('css'); |
31 |
?> |
32 |
</head> |
33 |
|
34 |
<body id="page-top" class="index"> |
35 |
<nav class="navbar navbar-default navbar-fixed-top" role="navigation"> |
36 |
<div class="container"> |
37 |
<div class="navbar-header page-scroll"> |
38 |
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> |
39 |
<span class="sr-only">Toggle navigation</span> |
40 |
<span class="icon-bar"></span> |
41 |
<span class="icon-bar"></span> |
42 |
<span class="icon-bar"></span> |
43 |
</button> |
44 |
<?php echo $this->Html->link('PictCode', array( |
45 |
'controller' => 'top', |
46 |
'action' => 'index' |
47 |
), array('class' => 'navbar-brand')); ?> |
48 |
</div> |
49 |
|
50 |
<div class="collapse navbar-collapse navbar-ex1-collapse"> |
51 |
<ul class="nav navbar-nav navbar-right"> |
52 |
<li><?php echo $this->Html->link('新規登録', array( |
53 |
'controller' => 'users', |
54 |
'action' => 'regist' |
55 |
)); ?></li> |
56 |
<li><?php echo $this->Html->link('ログイン', array( |
57 |
'controller' => 'users', |
58 |
'action' => 'login' |
59 |
)); ?></li> |
60 |
</ul> |
61 |
</div> |
62 |
</div> |
63 |
</nav> |
64 |
|
65 |
<div class="container"> |
66 |
|
67 |
<?php echo $this->fetch('content'); ?> |
68 |
|
69 |
</div><!-- /container --> |
70 |
|
71 |
<!-- Le javascript |
72 |
================================================== --> |
73 |
<!-- Placed at the end of the document so the pages load faster --> |
74 |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> |
75 |
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> |
76 |
<script src="//google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script> |
77 |
<?php echo $this->fetch('script'); ?> |
78 |
|
79 |
</body> |
80 |
</html> |