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

39 lines
842 B

<!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>
<h1><a href="{% url 'news:index' %}">Poker CC</a></h1>
<p>
{% if user.is_authenticated %}
<a href="{% url 'news:submission' %}">Submit</a>
{% else %}
<a href="{% url 'news:createaccount' %}">Create account</a>
{% endif %}
</p>
</header>
<!-- Body -->
<div class="content">
{% block content %}{% endblock %}
</div>
<!-- Footer -->
<footer>
<!-- some footer -->
</footer>
</body>
</html>