{% extends "docs_base.html" %}
{% block title %}{{ title }} - Ruskit Documentation{% endblock %}
{% block description %}{{ description }}{% endblock %}
{% block sidebar_content %}
{% for section in sections %}
<div class="nav-group">
<div class="nav-group-title">{{ section.title }}</div>
<div class="nav-items">
{% for item in section.items %}
<a href="{{ item.path }}" {% if item.is_active %}class="active"{% endif %}>{{ item.title }}</a>
{% endfor %}
</div>
</div>
{% endfor %}
{% endblock %}
{% block content %}
<div class="prose prose-slate max-w-none">
<h1>Documentation</h1>
<p>Welcome to the Ruskit documentation. Here you'll find comprehensive guides and documentation to help you start working with Ruskit as quickly as possible.</p>
<h2>What is Ruskit?</h2>
<p>Ruskit is a web application framework for Rust with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Ruskit takes the pain out of development by easing common tasks used in many web projects.</p>
<h2>Why Ruskit?</h2>
<ul>
<li>Built on top of battle-tested Rust web frameworks</li>
<li>Elegant syntax inspired by Laravel</li>
<li>Robust database integration with SeaORM</li>
<li>Powerful CLI tools for rapid development</li>
<li>Modern templating with Askama</li>
<li>Built-in authentication and authorization</li>
</ul>
<h2>Getting Started</h2>
<p>To get started with Ruskit, check out these topics:</p>
<ul>
<li><a href="/docs/installation">Installation Guide</a></li>
<li><a href="/docs/routing">Basic Routing</a></li>
<li><a href="/docs/controllers">Controllers</a></li>
<li><a href="/docs/models">Database Models</a></li>
</ul>
</div>
{% endblock %}