55 lines
2.4 KiB
HTML
55 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% block title %}<title>SomeTibia</title>{% endblock %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
|
<!-- Add additional CSS in static file -->
|
|
{% load static %}
|
|
<link rel="stylesheet" href="{% static 'css/styles.css' %}">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header class="blog-header py-3">
|
|
<div class="row flex-nowrap justify-content-between align-items-center">
|
|
<div class="col-4 pt-1">
|
|
|
|
</div>
|
|
<div class="col-4 text-center">
|
|
<a class="blog-header-logo" href="{% url 'accounts:index' %}">SomeTibia</a>
|
|
</div>
|
|
<div class="col-4 d-flex justify-content-end align-items-center">
|
|
<a class="btn btn-sm btn-outline-secondary" href="{% url 'accounts:register' %}">Register now!</a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-sm-3">
|
|
{% block sidebar %}
|
|
<ul class="sidebar-nav">
|
|
{% if user.is_authenticated %}
|
|
<li>User: {{ user.get_username }}</li>
|
|
<li><a href="{% url 'logout'%}?next={{request.path}}">Logout</a></li>
|
|
{% else %}
|
|
<li><a href="{% url 'login'%}?next={{request.path}}">Login</a></li>
|
|
{% endif %}
|
|
<li><a href="{% url 'accounts:index' %}">Home</a></li>
|
|
{% if user.is_authenticated %}
|
|
<li><a href="{% url 'accounts:characters' %}">My characters</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
{% endblock %}
|
|
</div>
|
|
<div class="col-sm-9 ">{% block content %}{% endblock %}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- scripts -->
|
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
</body>
|
|
</html> |