diff options
author | lxf <sng@luxagraf.net> | 2021-11-06 09:42:47 -0400 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2021-11-06 09:42:47 -0400 |
commit | d9f51299809bfb6b3ac589b7c42016d0ef240299 (patch) | |
tree | aa5f945e82fdbf1b66aca82fe5122f6ff5a12eb9 /templates/discursive_base.html | |
parent | dde9914dbbc6cda18ba59024065727c8dc6bcdf4 (diff) |
moved templates to top level directory
Diffstat (limited to 'templates/discursive_base.html')
-rw-r--r-- | templates/discursive_base.html | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/templates/discursive_base.html b/templates/discursive_base.html new file mode 100644 index 0000000..2b0b0b3 --- /dev/null +++ b/templates/discursive_base.html @@ -0,0 +1,83 @@ +{% load static %}<!DOCTYPE html> +<!--[if lt IE 8]> <html class="lte8"> <![endif]--> +<!--[if IE 8]> <html class="ie8 lte8"> <![endif]--> +<!--[if IE 9]> <html class="ie9"> <![endif]--> +<!--[if !IE]><!--> <html lang="en"><!--<![endif]--> +<head> + <title>{% block pagetitle %}{% endblock %}</title> + <meta name="viewport" content="width=device-width"> + <meta name="description" content=""> + <meta property="og:description" content=""> + <meta property="og:site_name" content=""> + <meta property="og:image" content=""> + <link rel="stylesheet" href="/media/screenv1.css?{%now "u"%}" type="text/css"> + {% block extrastyles %}{%endblock%} + <link rel="icon" type="image/png" href=""> + <!--<link rel="manifest" href="/webmanifest.json">--> + <link rel="apple-touch-icon" sizes="256x256" href=""> + {%comment%}{% block jsinclude %}{%endblock%} + <script async src="/media/js/main.pack.js?{%now "u"%}"></script>{%endcomment%} +</head> +<body id="{% block bodyid %}{%endblock%}" class="{% block bodyclass %}{% endblock %}"> + <div class="head-wrapper"> + <header> + <nav class="left"> + <ul> + <li><a href="/" title="">Home</a></li> + </ul> + </nav> + <div class="logo"></div> + <nav class="right {% if request.user.is_anonymous %}nologin{% endif %}"> + <ul> + <li><a href="{% url 'pages:detail' slug='discursive-meditation-history' %}" title="">What is Discursive Meditation?</a></li> + <li><a href="{% url 'pages:detail' slug='discursive-meditation-how-to' %}" title="">How Do I Do It?</a></li>{% if not request.user.is_anonymous %} + {%comment%}<li><a id="account-menu" href="{% url 'clients:settings' %}" title="">Account</a> + <div id="user-menu" class="dropmenu" tabindex="-1"> + <ul id="user-menu-list" class="list-style-none vertical"> + <li><a href="/settings/" class="">Account settings</a></li> + <li><a href="/plans/" class="">Subscription plans</a></li> + </ul> + <ul class="menu-divider list-style-none"> + <li> + <form action="/logout/" method="post">{% csrf_token %} + <input type="hidden" name="a" value="3"> + <button type="submit" value="Log out" class="btn-link">Log out</button> + </form> + </li> + </ul> + </div> + </li>{%endcomment%}{% else %} + {%comment %}<li><a href="{% url 'login' %}" title="" id="overlay-trigger" data-element="#js-overlay-content">Login</a></li> + <li><a href="{% url 'django_registration_register' %}" title="" class="btn">Get Started</a></li>{%endcomment%}{% endif %} + </ul> + </nav> + </header> + </div> + {% block color %}{%endblock%} + <div class="wrapper"> + {%comment%}<ul class="breadcrumb" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> + <li> + <a href="/" title="home" itemprop="url"><span itemprop="title">Home</span></a> + </li> + {% block breadcrumbs %}{% endblock %} + </ul>{%endcomment%} +{% block content %} +{% endblock %} + </div> + <footer> + <p>©{%comment%}{% now "Y" %}{%endcomment%}2018 discursivemeditation.com</p> + <nav> + <ul> + <li><a href="{% url 'pages:detail' slug='faq' %}" title="">FAQ</a></li> + <li><a href="{% url 'pages:detail' slug='resources' %}" title="">Resources</a></li> + </ul> + </nav> + </footer> + {% block extra %} + {%endblock%} +<script> +document.addEventListener("DOMContentLoaded", function () { + {% block jsdomready %}{%endblock%} +}); +</script> +</body> |