19 lines
734 B
HTML
19 lines
734 B
HTML
<header>
|
|
<div>
|
|
<h3><a href="{% url 'core:homepage' %}">the digital home of</a></h3>
|
|
<h1><a href="{% url 'core:homepage' %}">Calum Andrew Morrell</a></h1>
|
|
</div>
|
|
<div>
|
|
<nav>
|
|
<a href="{% url 'core:about-me' %}">about me</a>
|
|
<a href="{% url 'core:about-website' %}">about this website</a>
|
|
<a href="{% url 'core:contact-me' %}">contact me</a>
|
|
</nav>
|
|
<nav>
|
|
<a href="{% url 'core:homepage' %}">Home</a>
|
|
{# <a href="#">Photography</a>#}
|
|
<a href="{% url 'articles:list' %}">Articles</a>
|
|
{# <a href="{% url 'articles:categories' %}">Categories</a>#}
|
|
</nav>
|
|
</div>
|
|
</header> |