100 lines
3.4 KiB
HTML
100 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Beyond Heroes</title>
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
|
<!-- Custom CSS -->
|
|
<style>
|
|
/* body {
|
|
background-color: #f8f9fa;
|
|
color: #eeeeee;
|
|
}
|
|
.card {
|
|
border: 1px;
|
|
border-radius: 15px;
|
|
border-color: #eeeeee;
|
|
box-shadow: 0 0 10px rgba(250, 250, 250, 0.1);
|
|
}
|
|
.list-group-item {
|
|
background-color: #1e1f10;
|
|
border-color: #eeeeee;
|
|
}
|
|
.card-header {
|
|
background-color: #111111;
|
|
border-bottom: 1px solid #eeeeee;
|
|
}
|
|
.card-body {
|
|
background-color: #1e1f10;
|
|
}
|
|
.profile-image {
|
|
max-width: 125px;
|
|
border-radius: 50%;
|
|
padding: 20px;
|
|
}*/
|
|
.link {
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background-color: #000;">
|
|
<a class="navbar-brand" href="/">
|
|
<img src="/logo.jpg" alt="BH Logo" height="40"> Beyond Heroes
|
|
</a>
|
|
<!-- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button> -->
|
|
<div class="ml-auto"></div>
|
|
<div class="justify-content-center" id="navbarNav">
|
|
<ul class="navbar-nav">
|
|
<li class="nav-item" style="padding-right: 10px; padding-left: 10px;">
|
|
<a class="nav-link" href="/news">News</a>
|
|
</li>
|
|
<li class="nav-item" style="padding-right: 10px; padding-left: 10px;">
|
|
<a class="nav-link" href="/dev/">Development</a>
|
|
</li>
|
|
<li class="nav-item" style="padding-right: 10px; padding-left: 10px;">
|
|
<a class="nav-link" href="/dev/support/">Support Us</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="ml-auto"></div>
|
|
<div class="justify-content-center" id="navbarNav">
|
|
<ul class="navbar-nav">
|
|
{% if user.is_authenticated %}
|
|
<li class="nav-item">
|
|
<form action="{% url 'Logout' %}" method="post">
|
|
{% csrf_token %}
|
|
<button class="nav-link btn btn-link" type="submit">Logout</button>
|
|
</form>
|
|
</li>
|
|
{% else %}
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{% url 'Login' %}">Login</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{% url 'Register' %}">Register</a>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
<div style="padding: 30px;"></div>
|
|
<footer>
|
|
<div class="container">
|
|
<!-- <p style="text-align: center;">© Beyond Heroes. All rights reserved.</p> -->
|
|
</div>
|
|
</footer>
|
|
<!-- Bootstrap JavaScript and dependencies -->
|
|
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.min.js"></script>
|
|
</body>
|
|
</html>
|