You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
pokercc/news/templates/base.html

55 lines
1.2 KiB

<!DOCTYPE html>
{% load static %}
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="{% static 'news/css/app.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'news/css/foundation.min.css' %}">
<title>{% block title %}My amazing site{% endblock %}</title>
</head>
<body>
<!-- Header -->
<!-- <header>
</header> -->
<div class="grid-x">
<!-- Header -->
<div class="cell large-2 header">
<h1><a href="{% url 'news:index' %}">poker<br/>rumble</a></h1>
<span>hardcore news</span>
<p>
<br/>
{% if user.is_authenticated %}
<a href="{% url 'news:account' %}">[ {{ user.username }} ]</a>
<br/>
{% if user.is_staff %}
<a href="{% url 'news:submission' %}">Submit</a>
<br/>
{% endif %}
<a href="{% url 'news:logout_view' %}">Log out</a>
{% else %}
<a href="{% url 'news:signin' %}">Log in</a>
<br/>
<a href="{% url 'news:register' %}">Create account</a>
{% endif %}
</p>
</div>
<!-- Body -->
<div class="cell large-8 content">
{% block content %}{% endblock %}
</div>
</div>
<!-- Footer -->
<footer>
<!-- some footer -->
</footer>
</body>
</html>