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.
33 lines
639 B
33 lines
639 B
<!DOCTYPE html>
|
|
|
|
{% load static %}
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="{% static 'news/style.css' %}">
|
|
<title>{% block title %}My amazing site{% endblock %}</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<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>
|
|
|
|
<hr/>
|
|
|
|
<div id="content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
<hr/>
|
|
<footer>
|
|
some footer
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|