{% extends "base.html" %} {% block title %}Home - Actix MVC App{% endblock %} {% block content %}

Welcome to Actix MVC App

This is a Rust web application built with:

  • Actix Web - A powerful, pragmatic, and extremely fast web framework for Rust
  • Tera Templates - A template engine inspired by Jinja2 and Django templates
  • Bootstrap 5.3.5 - A popular CSS framework for responsive web design

This application follows the MVC (Model-View-Controller) architectural pattern:

Models

Data structures and business logic

Views

Tera templates for rendering HTML

Controllers

Request handlers and application logic

Learn More
{% endblock %}