{% extends "base/base.html" %} {% block title %} Welcome to lombik {% endblock %} {% block content %}
Version {{ version }}

Hello there

Welcome to lombik, a scaffold engine built on Flask to stay organized, fast track development and ease development.

Lombik logo

MIT licensed · Lightweight · Flask powered

{% set card_items = [ { "title": "Fast startup", "description": "Generate a production-ready Flask structure in seconds with auth, blueprints, services and sane defaults.", "icon": "flash-outline" }, { "title": "Opinionated structure", "description": "Keep routes, services, templates and logic organized without reinventing architecture every project.", "icon": "bulb-outline" }, { "title": "Secure by default", "description": "UUID users, hashed passwords, CSRF protection, login throttling and structured service responses built in.", "icon": "shield-checkmark-outline" }, ] %} {% for item in card_items %}

{{ item.title }}

{{ item.description }}

{% endfor %}

Lombik Philosophy

Building webapps shouldn't be complicated

Powered by

{% set stack = [ {"name": "Flask", "url": "https://flask.palletsprojects.com"}, {"name": "HTMX", "url": "https://htmx.org"}, {"name": "Tailwind", "url": "https://tailwindcss.com"}, {"name": "SQL Alchmeny", "url": "https://www.sqlalchemy.org"}, {"name": "MySQL", "url": "https://mysql.com"} ] %} {% for lib in stack %} {{ lib.name }} {% endfor %}

Start developing

Take the wheel

Log in or if you don't have an account read the docs to see how to create it.

{% endblock %}