91 lines
3.7 KiB
HTML
91 lines
3.7 KiB
HTML
{% load static %}
|
|
{% load compress %}
|
|
{% load account %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
<meta content="chrome=1" http-equiv="X-UA-Compatible">
|
|
<title>{% block head_title %}{% endblock %} Port Townsend Coffee</title>
|
|
|
|
<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=Eczar:wght@400;700&family=Inter:wght@100;400;700&display=swap" rel="stylesheet">
|
|
|
|
{% compress css %}
|
|
<link rel="stylesheet" type="text/css" href="{% static "styles/normalize.css" %}">
|
|
<link rel="stylesheet" type="text/css" href="{% static "styles/main.css" %}">
|
|
{% endcompress %}
|
|
|
|
<script type="module" defer src="{% static 'scripts/initializers/timezone.js' %}"></script>
|
|
<script type="module" defer src="{% static 'scripts/index.js' %}"></script>
|
|
|
|
{% block head %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div class="modal-menu">
|
|
<div class="modal-menu__content">
|
|
<div class="modal-menu__header">
|
|
<h4>Sign up for our newsletter</h4>
|
|
<span class="close-modal">×</span>
|
|
</div>
|
|
<div class="modal-menu__form">
|
|
<div class="_form_1"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<header class="site__header">
|
|
<nav class="site__nav">
|
|
<a class="site__logo" href="{% url 'storefront:product-list' %}"><img src="{% static 'images/site_logo.svg' %}" alt="Port Townsend Roasting Co."></a>
|
|
<ul class="nav__list nav__main">
|
|
<li><a class="nav__link" href="{% url 'storefront:product-list' %}">Shop</a></li>
|
|
<li><a class="nav__link" href="">Cafe</a></li>
|
|
<li><a class="nav__link" href="">Fair trade</a></li>
|
|
<li><a class="nav__link" href="{% url 'storefront:about' %}">About</a></li>
|
|
<li><a class="nav__link" href="{% url 'storefront:contact' %}">Contact</a></li>
|
|
</ul>
|
|
{% if user.is_authenticated %}
|
|
<div class="nav__menu nav__account">
|
|
<a class="nav__link" href="{% url 'storefront:customer-detail' user.pk %}">Account ▼</a>
|
|
<ul class="nav__dropdown">
|
|
{% if user.is_staff %}
|
|
<li><a class="nav__link" href="{% url 'dashboard:home' %}">Dashboard</a></li>
|
|
{% endif %}
|
|
<li><a class="nav__link" href="{% url 'storefront:customer-detail' user.pk %}">Orders</a></li>
|
|
<li><a class="nav__link" href="{% url 'account_logout' %}">Logout</a></li>
|
|
</ul>
|
|
</div>
|
|
{% else %}
|
|
<ul class="nav__list nav__account">
|
|
<li><a class="nav__link" href="{% url 'account_login' %}">Login</a></li>
|
|
<li>/</li>
|
|
<li><a class="nav__link" href="{% url 'account_signup' %}">Signup</a></li>
|
|
</ul>
|
|
{% endif %}
|
|
<a class="site__cart" href="{% url 'storefront:cart-detail' %}">
|
|
<span class="cart__count">{{cart|length}}</span>
|
|
<img class="cart__icon" src="{% static 'images/shopping_cart.svg' %}" alt="Shopping cart">
|
|
</a>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</main>
|
|
<footer>
|
|
<section>
|
|
<p>
|
|
<small>Copyright © 2016-{% now "Y" %} Better Living Food Company Inc.</small><br>
|
|
<small>Fair Trade | Organic | Port Townsend, WA 98368</small><br><br>
|
|
<img class="site__ft-stamp" src="{% static 'images/fair_trade_stamp.png' %}" alt="">
|
|
</p>
|
|
</section>
|
|
</footer>
|
|
|
|
<script src="https://ptcoffee.activehosted.com/f/embed.php?id=1" type="text/javascript" charset="utf-8"></script>
|
|
</body>
|
|
</html>
|