フレームワークのwebフォルダに、cssフォルダ・fontsフォルダ・jsフォルダを作成。
cssフォルダ内に
bootstrap.css
bootstrap.css.map
bootstrap.min.css
bootstrap.min.css.map
bootstrap-theme.css
bootstrap-theme.css.map
bootstrap-theme.min.css
bootstrap-theme.min.css.map
fontsフォルダ内に
glyphicons-halflings-regular.eot
glyphicons-halflings-regular.svg
glyphicons-halflings-regular.ttf
glyphicons-halflings-regular.woff
glyphicons-halflings-regular.woff2
jsフォルダ内に
bootstrap.js
bootstrap.min.js
jquery-1.11.1.min.js
npm.js
上記のファイルを設置する。
その後、viewsフォルダのlayout.phpを書き換えて読み込み。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title><?php if (isset($title)) echo $this->escape($title) . ' - '; ?>Sample System</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="/sample-system/web/css/bootstrap.min.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="/sample-system/web/js/jquery-1.11.1.min.js"></script>
<script src="/sample-system/web/js/bootstrap.min.js"></script>
</head>
<body>
....
コメント