LoginSignup
14
17

More than 5 years have passed since last update.

Laravel5にtwitter bootstrapを導入する

Posted at

実はLaravel5には最初からBootstrap3が導入されています。

以下の場所に格納されています。

public/
└── css
     └── app.css

resources/
└── assets
     └── less
       └── bootstrap
           └── *.less

Bootstrapはlessというcssを拡張した言語で書かれており、そのlessファイルをcssにコンパイルしたものがapp.cssです。

Boostrapを使うためには、

// resources/views/app.blade.php

<!DOCTYPE HTML>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <title>My Blog</title>

    <!-- CSS --><!-- 追加 -->
    <link href="/css/app.css" rel="stylesheet">
</head>

<body>     
    <!-- Scripts --><!-- 追加 -->
    <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
    <script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/js/bootstrap.min.js"></script>
</body>
</html>

とすればokです。

14
17
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
17