CoolFace
Apppublic

marimo-team/marimo-learn

sourceHugging Faceupdated 5mo agoView on Hugging Face
3likes
page.html21 linesDownload Raw Back to templates
1{% extends "base.html" %}2 3{% block title %}{{ title }} - Marimo Learn{% endblock %}4 5{% block content %}6    <header class="bg-white">7        <div class="container mx-auto px-4 py-12 max-w-6xl">8            <a href="../" class="link-primary text-sm mb-4 inline-block">&larr; Home</a>9            <h1 class="text-4xl md:text-5xl font-bold mb-4">{{ title }}</h1>10        </div>11    </header>12 13    <section class="py-12 bg-gray-50">14        <div class="container mx-auto px-4 max-w-6xl">15            <div class="prose">16                {{ body_html|safe }}17            </div>18        </div>19    </section>20{% endblock %}21