{% extends "base.html" %} {% block title %}Stick - Use-Case Oriented Rust Web Template{% endblock %} {% block content %}
Axum 0.8 + MongoDB v3 + Askama 0.16

Clean, Use-Case Centric Rust Web Development

A production-ready template organized around vertical features. Auth, databases, and domain logic are grouped together by use-case for high maintainability.

{% if authenticated %} Go to Tasks Dashboard {% else %} Get Started Free Sign In {% endif %}

Type-Safe Views

Askama renders templates compiled directly into Rust code, catching missing arguments or syntax bugs at compile time.

Secure Authentication

Built-in JWT session verification, cookie storage, bcrypt password hashing, and custom Axum 0.8 guard extractors.

MongoDB Integration

Seamless BSON v3 mapping, index setups, and type-safe `chrono::DateTime` conversion via `serde_with` serialize helpers.

{% endblock %}