Jinja Materializecss theme capability
Project description
Fastapi Jinja materializecss theming system.
Example
# material_demo.py
import os
from fastapi import FastAPI, Request
import justengel_material
MY_DIR = os.path.dirname(__file__)
app = FastAPI()
material = justengel_material.MaterialTemplates(os.path.join(MY_DIR, 'templates'))
material.install_app(app, site_name='Material Demo', primary_color='purple', secondary_color='teal')
@app.get('/')
def index(request: Request):
ctx = {'request': request, 'base_url': request.base_url,
'title': 'index'
}
return material.TemplateResponse('material/index.html', ctx)
HTML Template in templates/material/index.html
{# templates/material/index.html #}
{% extends "justengel_material/base.html" %}
{% block contents %}
<h1>Hello World!</h1>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<button class="btn">Button</button>
{% endblock contents %}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
justengel_material-1.0.0.tar.gz
(256.2 kB
view hashes)
Built Distribution
Close
Hashes for justengel_material-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e963b14ea9c86bb735ddb3e9b6c393fc4d2ffdc94b6e968c5d630f42b9d2a36 |
|
MD5 | c9087ab303aa34a354426db2c957a66a |
|
BLAKE2b-256 | 1c477e01c7677074de1706fd0bfe4060350e263b69e881715c1d88c923c61241 |