CoolFace
Apppublic

marimo-team/marimo-learn

sourceHugging Faceupdated 5mo agoView on Hugging Face
3likes
base.html48 linesDownload Raw Back to templates
1<!DOCTYPE html>2<html lang="en">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>{% block title %}Marimo Learn{% endblock %}</title>7    <meta name="description" content="Learn Python, data science, and machine learning with interactive marimo notebooks">8    <link rel="icon" type="image/png" href="{{ root_path }}assets/marimo-learn.png">9    <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">10    <link rel="stylesheet" href="{{ root_path }}assets/styles.css">11</head>12<body class="bg-gray-50 text-gray-800 font-sans">13 14{% block content %}{% endblock %}15 16{% include "contribute.html" %}17 18    <footer class="bg-gray-800 text-white py-8">19        <div class="container mx-auto px-4 max-w-6xl">20            <div class="flex flex-col md:flex-row justify-between items-center">21                <div class="mb-4 md:mb-0">22                    <p>&copy; {{ current_year }} marimo. All rights reserved.</p>23                </div>24                <div class="flex space-x-4">25                    <a href="https://github.com/marimo-team/learn" target="_blank" class="footer-link">26                        {% include "icons/github-24.svg" %}27                    </a>28                    <a href="https://marimo.io" target="_blank" class="footer-link">29                        {% include "icons/globe.svg" %}30                    </a>31                </div>32            </div>33        </div>34    </footer>35 36    <script>37        document.querySelectorAll('a[href^="#"]').forEach(anchor => {38            anchor.addEventListener('click', function (e) {39                e.preventDefault();40                document.querySelector(this.getAttribute('href')).scrollIntoView({41                    behavior: 'smooth'42                });43            });44        });45    </script>46</body>47</html>48