├── .gitignore ├── LICENSE.TXT ├── README.md ├── example ├── example.png ├── hello.py └── templates │ ├── base.html │ ├── index.html │ └── normal_index.html ├── sanic_jinja2 └── __init__.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | __pycache__/ 3 | build/ 4 | dist/ 5 | *.egg-info/ 6 | venv/ 7 | *.log 8 | -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixxu/sanic-jinja2/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixxu/sanic-jinja2/HEAD/README.md -------------------------------------------------------------------------------- /example/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixxu/sanic-jinja2/HEAD/example/example.png -------------------------------------------------------------------------------- /example/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixxu/sanic-jinja2/HEAD/example/hello.py -------------------------------------------------------------------------------- /example/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixxu/sanic-jinja2/HEAD/example/templates/base.html -------------------------------------------------------------------------------- /example/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixxu/sanic-jinja2/HEAD/example/templates/index.html -------------------------------------------------------------------------------- /example/templates/normal_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixxu/sanic-jinja2/HEAD/example/templates/normal_index.html -------------------------------------------------------------------------------- /sanic_jinja2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixxu/sanic-jinja2/HEAD/sanic_jinja2/__init__.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixxu/sanic-jinja2/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixxu/sanic-jinja2/HEAD/setup.py --------------------------------------------------------------------------------