Metadata-Version: 2.1
Name: miyadaiku-theme-bootstrap4
Version: 1.0.1
Summary: Bootstrap4 files for miyadaiku static site generator
Home-page: https://miyadaiku.github.io/miyadaiku-theme-bootstrap4
Author: Atsuo Ishimoto
License: MIT
Project-URL: Documentation, https://miyadaiku.github.io/
Project-URL: Source, https://miyadaiku.github.io/miyadaiku-theme-bootstrap4
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Requires-Dist: miyadaiku (>=1.0.0)
Requires-Dist: miyadaiku-theme-jquery (>=1.0.0)
Requires-Dist: miyadaiku-theme-popper-js (>=1.0.0)
Provides-Extra: dev
Requires-Dist: wheel ; extra == 'dev'
Requires-Dist: twine ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'
Requires-Dist: black ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: autoflake ; extra == 'dev'


Bootstrap 4 files for miyadaiku static site generator
========================================================

Provides `Bootstrap4 <https://getbootstrap.com/>`__ 4.4.1 CSS and Javascript files.


Installation
-------------------

Use pip command to install Bootstrap 4. 

::

   $ pip3 install miyadaiku_theme_bootstrap4



Configuraion
----------------------


In your config.yml file of your project, add following configuration at `themes` section.

::

   themes:
     - miyadaiku_theme_bootstrap4    # <---- add this line


Usage
----------------------

Add following code to your template files.

::

  <!-- include boolstrap4 -->
  {{ bootstrap4.load_css(page) }}

  <!-- include jquery.js -->
  {{ jquery.load_js(page) }}

  <!-- include popper.js -->
  {{ popper_js.load_js(page) }}

  <!-- include boolstrap4 js -->
  {{ bootstrap4.load_js(page) }}


Example
-------------

https://github.com/miyadaiku/miyadaiku-docs/tree/master/samples/bootstrap4



