diff options
Diffstat (limited to 'design/templates/base.html')
-rw-r--r-- | design/templates/base.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/design/templates/base.html b/design/templates/base.html index 50749cb..fc369ae 100644 --- a/design/templates/base.html +++ b/design/templates/base.html @@ -15,6 +15,7 @@ <link rel="icon" type="image/png" href=""> <!--<link rel="manifest" href="/webmanifest.json">--> <link rel="apple-touch-icon" sizes="256x256" href=""> + {% block jsinclude %}{%endblock%} <script async src="/media/js/main.min.js?{%now "u"%}"></script> </head> <body class="{% block bodyclass %}{% endblock %}"> @@ -22,7 +23,7 @@ <header> <nav class="left"> <ul>{% if not request.user.is_anonymous %} - <li><a class="circle plus" href="{%url 'notes:create' %}" title="Add a new note">New</a></li> + <li><a class="circle plus" href="{% url 'notes:create' %}" title="Add a new note">New</a></li> <li><a href="{%url 'notes:list' %}" title="View all your notes">Notes</a></li> <li><a id="notebook-menu-link" href="{%url 'notebooks:list' %}" title="view your notebooks">Notebooks</a> <div id="notebooks-menu" class="dropmenu"> @@ -41,7 +42,7 @@ <div class="logo"></div> <nav class="right {% if request.user.is_anonymous %}nologin{% endif %}"> <ul> - <li><a href="{% url 'forum:topic-list' %}" title="View the TKNote Forum">Forum</a></li> + <li><a href="{% url 'forum:topic-list' %}" title="View the TKNote Forum">Community</a></li> <li><a href="{% url 'pages' slug='tour' %}" title="">Tour</a></li> <li><a href="{% url 'pages' slug='howto' %}" title="">How to</a></li>{% if not request.user.is_anonymous %} <li><a id="account-menu" href="{% url 'settings' %}" title="">Account</a> @@ -91,7 +92,6 @@ </footer> {% block extra %} {%endblock%} -{% block jsinclude %}{%endblock%} <script> |