├── .gitignore ├── README.txt ├── __init__.py ├── db ├── __init__.py └── sample_db.py ├── server.py ├── static └── styles.css └── templates ├── _macros.html ├── base.html ├── home └── index.html └── posts ├── _partials ├── edit.html └── show.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode/ 3 | __pycache__/ -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidranjer/htmx-flask-crudapp/HEAD/README.txt -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/sample_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidranjer/htmx-flask-crudapp/HEAD/db/sample_db.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidranjer/htmx-flask-crudapp/HEAD/server.py -------------------------------------------------------------------------------- /static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidranjer/htmx-flask-crudapp/HEAD/static/styles.css -------------------------------------------------------------------------------- /templates/_macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidranjer/htmx-flask-crudapp/HEAD/templates/_macros.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidranjer/htmx-flask-crudapp/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidranjer/htmx-flask-crudapp/HEAD/templates/home/index.html -------------------------------------------------------------------------------- /templates/posts/_partials/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidranjer/htmx-flask-crudapp/HEAD/templates/posts/_partials/edit.html -------------------------------------------------------------------------------- /templates/posts/_partials/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidranjer/htmx-flask-crudapp/HEAD/templates/posts/_partials/show.html -------------------------------------------------------------------------------- /templates/posts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidranjer/htmx-flask-crudapp/HEAD/templates/posts/index.html --------------------------------------------------------------------------------