Hello Coders!
This article presents a curated list with open-source templates and starters crafted on top of Bootstrap and Flask. For newcomers, Bootstrap is the most popular CSS/JS framework for coding user interfaces and Flask is a leading web framework written in Python. All Flask Templates mentioned in this article can be downloaded directly from Github and used for unlimited hobby & commercial products.
- ✨ Flask Template Bootstrap - Material Bootstrap 5
- ✨ Flask Template Bootstrap - AdminLTE
- ✨ Flask Template Bootstrap - Material Kit
- ✨ Flask Template Bootstrap - Soft UI Dashboard
- ✨ Flask Template Bootstrap - Datta Able
✨ What's in the Box
All starters being generated by AppSeed, share a common set of features and characteristics:
-
Up-to-date dependencies
: Flask 2.0.1 -
SCSS compilation
via Gulp -
DBMS
: SQLite, PostgreSQL (production) -
DB Tools
: SQLAlchemy ORM, Flask-Migrate (schema migrations) -
Blueprints,
Session-Based authentication
(via flask_login) -
Deployment scripts
: Docker, Gunicorn / Nginx, Heroku - Support via Github (issues tracker) and Discord
✨ What is Bootstrap
In a single sentence, Bootstrap helps us to code faster and easier user interfaces by providing a set of HTML, and CSS templates for creating UI components like buttons, dropdowns, forms, alerts, modals, tabs, accordions, etc. Reusing the assets provided by the Bootstrap framework we might win time and also improve the quality of our end-product. Why using Bootstrap:
-
Easy to use
- any developer with basic programming knowledge can use and combine Bootstrap components to prototype fast a web page. -
Responsiveness
- Bootstrap components are built to adapt and display properly on desktop and mobile devices with a wide range of resolutions. -
Alive Community
- this amazing framework is actively supported and versioned by a huge open-source community -
Cross-Browser Compatibility
- Bootstrap keeps up the codebase with the latest standards for a smooth deployment on all well-known browsers: Chrome, Safari, IE, or Firefox.
✨ What is Flask
Flask is an open-source web framework coded in Python using a lightweight codebase and flexible by design. By default, Flask is not coming with a database or any other hard dependency empowering the developers with total freedom in terms of used modules and how to structure the project. To use Flask and code a test application, Python3 should be properly installed in the workstation and accessible in the terminal window.
$ pip install flask
The above command install Flask
using PIP
, the official package manager for Python. Once Flask
is installed, we can code a simple app and run it:
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Flask & Boostrap works great!'
if __name__ == '__main__':
app.run()
If we execute the above snippet and open http://localhost:5000
in the browser we should see the message Flask & Boostrap works great. Even if not too much, we've just coded a usable Flask application that we can improve with more features and modules.
For more than a simple Hello World let's get back to our list.
Flask Template Material
Designed for those who like bold elements and beautiful websites, Material Dashboard 2 is ready to help you create stunning websites and web apps. Material Dashboard 2 is built with over 60 frontend individual elements, like buttons, inputs, navbars, nav tabs, cards, or alerts, giving you the freedom of choosing and combining.
- 👉 Flask Dashboard Material - source code
- 👉 Flask Dashboard Material - LIVE deployment
Flask Template AdminLTE
AdminLTE is one of the best open-source admin dashboards & control panel themes. Built on top of Bootstrap, AdminLTE provides a range of responsive, reusable, and commonly used components. Flask provides a lightweight codebase that can be easily extended to become an API, a simple web app, or a complex eCommerce platform.
- 👉 AdminLTE Flask - source code
- 👉 AdminLTE Flask - LIVE Deployment
Flask Template Material Kit
Material Kit is a Free Bootstrap 4 UI Kit with a fresh, new design inspired by Google's material design. This simple Flask project can be used to code beautiful websites with a modern design.
- 👉 Flask Material Kit - source code
- 👉 Flask Material Kit - LIVE deployment
Flask Template Soft Dashboard
Designed for those who like bold elements and beautiful websites, Soft UI Dashboard is ready to help you create stunning websites and web apps. Soft UI Dashboard is built with over 70 frontend individual elements, like buttons, inputs, navbars, nav tabs, cards, or alerts, giving you the freedom of choosing and combining.
- 👉 Flask Soft UI Dashboard - source code
- 👉 Flask Soft UI Dashboard - LIVE Demo
Flask Template Datta Able
Datta Able Bootstrap Lite is the most stylized Bootstrap 4 Lite Admin Template, around all other Lite/Free admin templates in the market. It comes with highly feature-rich pages and components with fully developer-centric code.
- 👉 Datta Able Flask - source code
- 👉 Datta Able Flask - LIVE deployment
✨ Flask Template CoreUI
CoreUI is an Open Source Bootstrap Admin Template. But CoreUI is not just another Admin Template. It goes way beyond hitherto admin templates thanks to transparent code and file structure. And if that's not enough, let’s just add that CoreUI consists bunch of unique features and over 1000 high-quality icons.
- 👉 CoreUI Flask - source code
- 👉 CoreUI Flask - LIVE deployment
Thanks for reading! For more resources, feel free to access:
- ✨ AppSeed for Support and more Flask Starters
- ✨ Free Dashboards - crafted in Flask, Django, and React
Top comments (4)
Can you move Material Kit on top position?
The design is amazing.
Great list, .. as always.
🚀🚀
A nice compilation of old school and modern kits.
Thanks for sharing!
🚀🚀