Add logo
This commit is contained in:
parent
d7558cfa0c
commit
a911b324b5
7 changed files with 59 additions and 3 deletions
|
@ -8,6 +8,7 @@
|
|||
<title>{% block title %}Nummi{% endblock %}</title>
|
||||
|
||||
{% block link %}
|
||||
<link rel="icon" href="{% static 'main/svg/logo.svg' %}" type="image/svg+xml" />
|
||||
<link rel="stylesheet" href="{% static 'main/css/main.css' %}" type="text/css" />
|
||||
<link rel="stylesheet" href="{% static 'main/css/nav.css' %}" type="text/css" />
|
||||
<link rel="stylesheet" href="{% static 'main/fontawesome/css/all.min.css' %}" type="text/css" />
|
||||
|
@ -19,7 +20,7 @@
|
|||
<nav>
|
||||
<a href="{% url 'index' %}"
|
||||
class="home{% if request.resolver_match.url_name == 'index' %} cur{% endif %}">
|
||||
Nummi
|
||||
<img src="{% static 'main/svg/logo-white.svg' %}" />Nummi
|
||||
</a>
|
||||
<a href="{% url 'transactions' %}"
|
||||
class="{% if request.resolver_match.url_name == 'transactions' %}cur{% endif %}">
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<h1>Nummi</h1>
|
||||
<h1><img src="{% static 'main/svg/logo.svg' %}" />Nummi</h1>
|
||||
|
||||
{% if transactions %}
|
||||
<h2>Transactions</h2>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue