File size: 1,897 Bytes
aaef24a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>{% block title %}Marimo Learn{% endblock %}</title>
    <meta name="description" content="Learn Python, data science, and machine learning with interactive marimo notebooks">
    <link rel="icon" type="image/png" href="{{ root_path }}assets/marimo-learn.png">
    <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
    <link rel="stylesheet" href="{{ root_path }}assets/styles.css">
</head>
<body class="bg-gray-50 text-gray-800 font-sans">

{% block content %}{% endblock %}

{% include "contribute.html" %}

    <footer class="bg-gray-800 text-white py-8">
        <div class="container mx-auto px-4 max-w-6xl">
            <div class="flex flex-col md:flex-row justify-between items-center">
                <div class="mb-4 md:mb-0">
                    <p>&copy; {{ current_year }} marimo. All rights reserved.</p>
                </div>
                <div class="flex space-x-4">
                    <a href="https://github.com/marimo-team/learn" target="_blank" class="footer-link">
                        {% include "icons/github-24.svg" %}
                    </a>
                    <a href="https://marimo.io" target="_blank" class="footer-link">
                        {% include "icons/globe.svg" %}
                    </a>
                </div>
            </div>
        </div>
    </footer>

    <script>
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                document.querySelector(this.getAttribute('href')).scrollIntoView({
                    behavior: 'smooth'
                });
            });
        });
    </script>
</body>
</html>