test-blog/templates/base.html

35 lines
897 B
HTML

{% load static %}
<html>
<head>
<title>Django blog</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400" rel="stylesheet">
<link href="{% static 'css/base.css' %}" rel="stylesheet" s>
</head>
<body>
<div>
<header>
<div class="nav-left">
<h1><a href="{% url 'home' %}">Django blog</a></h1>
</div>
<div class="nav-right">
<a href="{% url 'post_new' %}">+ New Blog Post</a>
</div>
</header>
<!-- start new HTML... -->
{% if user.is_authenticated %}
<p>Hi {{ user.username }}!</p>
<p><!--a href="{% url 'logout' %}">Log out</a--></p>
{% else %}
<p>You are not logged in.</p>
<!--a href="{% url 'login' %}">Log In</a> |
<a href="{% url 'signup' %}">Sign Up</a-->
{% endif %}
<!--- end new HTML... -->
{% block content %}
{% endblock content %}
</div>
</body>
</html>