{% extends "base.html" %} {% block title %}About - Hostbasket{% endblock %} {% block content %}
A web application framework built with Actix Web and Rust.
hostbasket/ ├── Cargo.toml # Project dependencies ├── src/ │ ├── config/ # Configuration management │ ├── controllers/ # Request handlers │ ├── middleware/ # Custom middleware components │ ├── models/ # Data models and business logic │ ├── routes/ # Route definitions │ ├── static/ # Static assets (CSS, JS, images) │ │ ├── css/ # CSS files including Bootstrap │ │ ├── js/ # JavaScript files │ │ └── images/ # Image files │ ├── utils/ # Utility functions │ ├── views/ # Tera templates │ └── main.rs # Application entry point
To get started with Hostbasket, check out the GitHub repository.