27 lines
585 B
HTML
27 lines
585 B
HTML
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>My Blog is shiny</title>
|
|
</head>
|
|
<body>
|
|
<h1>My Blog</h1>
|
|
{% if request.user.username %}
|
|
<p>Welcome, {{ request.user.username }}!</p>
|
|
<a href="{% url 'logout' %}">Logout</a>
|
|
<h2>nav</h2>
|
|
{% if template_name != 'home.html' %}
|
|
<a href="{% url 'home' %}">home</a> |
|
|
{% endif %}
|
|
<a href="{% url 'dashboard' %}">dashboard</a>
|
|
{% else %}
|
|
<h2>nav</h2>
|
|
<a href="{% url 'login' %}">Login</a> |
|
|
<a href="{% url 'register' %}">Register</a>
|
|
{% endif %}
|
|
<h2>posts</h2>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|