Metadata-Version: 2.1
Name: Flask-MDBootstrap
Version: 3.0.5
Summary: An extension that includes material design for bootstrap in your project, without any boilerplate code.
Home-page: https://github.com/shijl0925/Flask-MDBootstrap
Author: Jialiang Shi
Author-email: kevin09254930sjl@gmail.com
License: MIT
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown

# Flask-MDBootstrap


Flask-MDBootstrap packages [MDB](https://mdbootstrap.com/) into an extension that mostly consists
of a blueprint named 'mdbootstrap'. It can also create links to serve MATERIAL DESIGN FOR BOOTSTRAP
from a CDN and works with no boilerplate code in your application.

## Installation

Installation using pip:

    pip install Flask-MDBootstrap
    

## Compatibility

This package is compatible Python versions 2.7, 3.4, 3.5 and 3.6.

## Usage

Here is an example:

    from flask_mdbootstrap import MDBootstrap
    
    [...]
    
    MDBootstrap(app)

This makes some new templates available, containing blank pages that include all
bootstrap resources, and have predefined blocks where you can put your content.
    




