No description
Find a file
2020-03-15 13:16:43 +01:00
flask_semanticui init 2020-03-14 16:17:01 +01:00
.gitignore Initial commit 2020-03-14 16:02:53 +01:00
.travis.yml tests & travis 2020-03-14 18:56:04 +01:00
LICENSE.txt Create LICENSE.txt 2020-03-14 19:27:48 +01:00
README.md Update README.md 2020-03-15 13:16:43 +01:00
requirements.txt tests & travis 2020-03-14 18:56:04 +01:00
sample.py import fix 2020-03-14 18:58:39 +01:00
setup.py tests & travis 2020-03-14 18:56:04 +01:00
test_sample.py tests & travis 2020-03-14 18:56:04 +01:00

Flask-Semantic-UI

Build status

Build Status

About

This simple extension adds Semantic UI support to your Flask project. It has currently no support for WTForms. This will come in a later version. But you can all semantic UI features, like icons, animations, ... You name it.

Based on Semantic UI v2.4.1.

How to use

Your __init__.py file should be something like this:

from flask_semanticui import SemanticUI

...

def create_app():
    app = Flask(__name__)
    SemanticUI(app)

...

You can also take a look at the sample.py. Maybe it will help, but I think it's pretty easy.

License

This work is licensed under GPLv3. See LICENSE.txt for details.