Skip to main content

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


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.4.tar.gz (256.8 kB view hashes)

Uploaded Source

Built Distribution

justengel_material-1.0.4-py3-none-any.whl (265.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page