mirror of
https://github.com/vale981/flask-semanticui
synced 2025-03-04 16:51:39 -05:00
Update README.md
This commit is contained in:
parent
c3337deae9
commit
5272fb463a
1 changed files with 22 additions and 1 deletions
23
README.md
23
README.md
|
@ -1 +1,22 @@
|
|||
# flask-semanticui
|
||||
# Flask-Semantic-UI
|
||||
|
||||
### Build status
|
||||
[](https://travis-ci.com/technikamateur/flask-semanticui)
|
||||
|
||||
### 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.
|
||||
|
||||
### How to use
|
||||
Your `__init__.py` file should be something like this:
|
||||
```python
|
||||
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.
|
||||
|
|
Loading…
Add table
Reference in a new issue