私はJekyllを使い始めたばかりで、Twitter Bootstrapの機能のいくつかを取り入れたいと思っています。誰かがこれを行ったことがありますか。 Bootstrapはサポートされていませんが、Jekyllサイトを構築し、Bootstrapを取り込む方法があることを期待しています。
Jekyllはネイティブでsassをサポートしているため、 bootstrap-sass を使用できます。
個人的にはbower install bootstrap-sass
コマンドを使用してインストールします。
これにより、BootstrapおよびJqueryがbower_components
フォルダにインストールされます。
_config.ymlに以下を追加します:
sass:
# loading path from site root
# default to _sass
sass_dir: bower_components/bootstrap-sass/assets/stylesheets
# style : nested (default), compact, compressed, expanded
# :nested, :compact, :compressed, :expanded also works
# see http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
# on a typical Twitter bootstrap stats are :
# nested 138,7kB, compact 129,1kB, expanded 135,9 kB, compressed 122,4 kB
style: compressed
JavaScriptを使用する場合は、_includes/footer.htmlに次の行を追加します。
<script src="{{ site.baseurl }}/bower_components/jquery/dist/jquery.min.js"></script>
<script src="{{ site.baseurl }}/bower_components/bootstrap-sass/assets/javascripts/bootstrap.min.js"></script>
css/main.scss
で以前のコンテンツを削除して追加
---
# Only the main Sass file needs front matter (the dashes are enough)
---
@charset "utf-8";
/* path to glyphicons */
$icon-font-path: "/bower_components/bootstrap-sass/assets/fonts/bootstrap/";
/* custom variable */
$body-bg: red;
/* any style customization must be before the bootstrap import */
@import "bootstrap";
bower_components/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss
で利用可能なすべての変数を確認できます
古い_sassフォルダを削除できます。
これで、ビルドごとにcssファイルが生成されます。
Bootstrap 4 BetaがSassで実行されるようになりました のように、「公式」バウアーパッケージを使用できます。
これが私がしたことです:
インストールするbower install bootstrap#v4.0.0-beta --save
Bootstrapおよびbower_components
フォルダへの依存関係。
_config.yml
で、Sassフォルダを変更し、bower_components
を処理から除外しました。
sass:
sass_dir: assets/css
# Exclude from processing.
exclude:
- bower_components
assets/css/main.scss
を次のように変更しました:
---
# Only the main Sass file needs front matter (the dashes are enough)
---
@charset "utf-8";
@import "variables"; // (2)
@import "../../bower_components/bootstrap/scss/bootstrap"; // (1)
// Import other styling below
// ...
(1)2番目のインポート文は、_config.yml
で指定されたSassディレクトリを基準にする必要があることに注意してください。 main.scss
も含むフォルダーを選択したので、お気に入りのIDE(例:WebStorm))でリンクしているアセットは壊れません。
(2)Bootstrap Sass変数を上書きするため、assets/css/_variables.scss
を作成しました。これは、 Bootstrapライブラリ。
bower_components
に付属するJSを使用する方法が見つからなかったため、CDNバージョンを含めることを選択しました Bootstrapによって提案されたとおり :
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>