aboutsummaryrefslogblamecommitdiffstats
path: root/alphabetlearning/templates/base.html
blob: 2979f335b88eec3f4c7bf8727e2b68671e0d6095 (plain) (tree)
1
2
3
4
5




                                           










                                                                               



                                                                                                                                      



                                                                       
                                                                      
                                                                    

                              
                                                                  
                                                             
                                                         


                                 













                                                                                                                          
 

                                                                                       
                             


                                                                                             
                             

                                                                                            
                             

                                                                                           
                             





                                                                            



                                                                                                   









                                                                                                                                                                                                                      


                                      





                                                                                                                                                                                                                                                                         
                                       
                             
                         
                      












                                                                                                          
                  


                            
                 


















































                                                                                                           
 












                                                                     









                                                                 



                                        
       
{% load static i18n %}

<!DOCTYPE html>
{% get_current_language as LANGUAGE_CODE %}
<html lang="{{ LANGUAGE_CODE }}">
    <head>
        <meta charset="utf-8"/>
        <meta http-equiv="x-ua-compatible" content="ie=edge"/>
        <title>
            {% block title %}
            Alphabet Learning
            {% endblock title %}
        </title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
        <meta name="description" content="Joanna Lemon Resources"/>
        <meta name="author" content="Matthew Lemon"/>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">

        <link rel="icon" href="{% static 'images/favicons/al.png' %}"/>
        {% block extra_css %}
        {% endblock extra_css %}
        {% block css %}
        <link rel="stylesheet" href="{% static 'css/project.css' %}"/>
        <link rel="stylesheet" href="{% static 'css/forms.css' %}"/>
        {% endblock css %}
        {% block javascript %}
        <script defer src="{% static 'js/project.js' %}"></script>
        <script src="{% static "js/htmx.min.js" %}"></script>
        <script src="https://js.stripe.com/v3/"></script>
        {% endblock javascript %}
    </head>
    <body>
        <header>
            <nav>
                <a href="{% url "home" %}">
                    <img src="{% static "images/AL_long_logo_black_grey.png" %}" width=300px alt="Alphabet Learning Logo">
                </a>
                <div>
                    <ul>
                        <li>
                            {% if request.user.is_authenticated %}
                            <a href="{% url "users:detail" request.user.id %}">{{ request.user }}</a>
                            {% else %}
                            <a href="{% url "account_login" %}">Log in</a>
                            {% endif %}
                        </li>

                        <li>
                            <a href="{% url "resources:resource_list" %}">Resources</a>
                        </li>
                        <li>
                            <a href="https://www.tes.com/teaching-resources/shop/joannalemon"
                               target="_blank">TES Shop</a>
                        </li>
                        <li>
                            <a href="https://joannalemon.etsy.com/" target="_blank">Etsy</a>
                        </li>
                        <li>
                            <a href="https://blog.joannalemon.com" target="_blank">Blog</a>
                        </li>
                        <li>
                            {% if request.user.is_authenticated %}
                            <a href="{% url "account_logout" %}">Log out</a>
                            {% endif %}
                        </li>
                        <li>
                            {% if request.user.shoppingcart %}

                            <!- TODO - fix this, the logic should be different button if no cart ->
                            <! this is a problem because it seems you can have an empty cart ->
                                <a href="{% url "payments:cart_detail" %}" class="full-basket-button">
                                    <span>
                                        Items in cart (
                                        {{ request.user.shoppingcart.items.count }}
                                        )
                                    </span>
                                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="bi bi-bag" viewBox="0 0 16 16">
                                        <path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1m3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z"/>
                                    </svg>
                                </a>

                            {% else %}

                                <button disabled><span class="fw-bold px-1">Empty Basket</span>	
                                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="bi bi-bag-x" viewBox="0 0 16 16">
                                        <path fill-rule="evenodd" d="M6.146 8.146a.5.5 0 0 1 .708 0L8 9.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 10l1.147 1.146a.5.5 0 0 1-.708.708L8 10.707l-1.146 1.147a.5.5 0 0 1-.708-.708L7.293 10 6.146 8.854a.5.5 0 0 1 0-.708"/>
                                        <path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1m3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z"/>
                                    </svg>
                                </button>
                            {% endif %}
                        </li>
                    </ul>
                </div>
            </nav>
            <div></div>
        </header>
        <main>
            {% block body %}
            {% if messages %}
            {% for message in messages %}
            <div class="alert alert-dismissible {% if message.tags %}alert-{{ message.tags }}{% endif %}">
                {{ message }}
                <button type="button"
                        class="btn-close"
                        data-bs-dismiss="alert"
                        aria-label="Close"></button>
            </div>
            {% endfor %}
            {% endif %}
            {% block main %}
            <div>
                {% block content %}
                {% endblock content %}
                <footer>
                    <div>
                        <div>
                            <img src="#" alt="" width="24" height="19">
                            <small>&copy; 2024</small>
                        </div>
                        <div>
                            <h5>Features</h5>
                            <ul>
                                <li><a class="link-secondary text-decoration-none" href="#">Cool stuff</a>
                                </li>
                                <li><a class="link-secondary text-decoration-none" href="#">Random
                                        feature</a></li>
                                <li><a class="link-secondary text-decoration-none" href="#">Team
                                        feature</a></li>
                                <li><a class="link-secondary text-decoration-none" href="#">Stuff for
                                        developers</a></li>
                                <li><a class="link-secondary text-decoration-none" href="#">Another one</a>
                                </li>
                                <li><a class="link-secondary text-decoration-none" href="#">Last time</a>
                                </li>
                            </ul>
                        </div>
                        <div>
                            <h5>Pages on this site</h5>
                            <ul>
                                <li><a class="link-secondary text-decoration-none"
                                       href="{% url "resources:resource_list" %}">Resources</a></li>
                                <li><a class="link-secondary text-decoration-none" href="#">Resource
                                        name</a></li>
                                <li><a class="link-secondary text-decoration-none" href="#">Another
                                        resource</a></li>
                                <li><a class="link-secondary text-decoration-none" href="#">Final
                                        resource</a></li>
                            </ul>
                        </div>
                        <div>
                            <h5>About</h5>
                            <ul>
                                <li><a class="link-secondary text-decoration-none" href="#">Team</a></li>
                                <li><a class="link-secondary text-decoration-none" href="#">Locations</a>
                                </li>
                                <li><a class="link-secondary text-decoration-none" href="#">Privacy</a>
                                </li>
                                <li><a class="link-secondary text-decoration-none" href="#">Terms</a></li>
                            </ul>
                        </div>
                    </div>
                </footer>

            </div>
            {% endblock main %}
            {% endblock body %}
        </main>
        <!-- /container -->
        {% block modal %}
        {% endblock modal %}
        {% block inline_javascript %}
        {% comment %}
        Script tags with only code, no src (defer by default). To run
        with a "defer" so that you run inline code:
        <script>
            #
          } {
            # window.addEventListener('DOMContentLoaded', () => {
              #
            } {
              # /* Run whatever you want */ #
            } {
              #
            });
            #
          }
        </script>
        {% endcomment %}
        {% endblock inline_javascript %}
    </body>
</html>