{% extends "base.html" %} {% block title %}About - Declarative Routes Demo{% endblock %} {% block content %}
Learn about the modern Python web framework that makes building web applications simple, fast, and enjoyable.
Serv is a modern Python web framework designed for developers who want to build web applications quickly and efficiently. It combines the simplicity of Flask with the power of modern async programming.
With its declarative routing system, you can define your application's routes using simple YAML configuration files, making your code more maintainable and easier to understand.
This demonstration showcases the declarative routing capabilities of Serv. All routes in this application are defined using a simple YAML configuration file, demonstrating how easy it is to structure and maintain your web application's routing logic.
routers:
- name: main_router
routes:
- path: /
handler: demo_app:HomeRoute
- path: /dashboard
handler: demo_app:DashboardRoute
- path: /about
handler: demo_app:AboutRoute
Explore the dashboard to see more interactive features, or visit our documentation to learn how to build your own Serv application.