99 lines
3.8 KiB
HTML
99 lines
3.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
{% load static %}
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="Product Hunt">
|
|
<meta name="author" content="Sharad Ahlawat">
|
|
<meta name="generator" content="django">
|
|
<title>Product Hunt</title>
|
|
|
|
<link rel="canonical" href="https://getbootstrap.com/docs/4.4/examples/album/">
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
|
|
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
|
<!-- Bootstrap core CSS. Adding local file enable pycharm to auto-complete CSS tags -->
|
|
<link href="{% static 'bootstrap.min.css' %}" rel="stylesheet">
|
|
<link href="{% static 'open-iconic/font/css/open-iconic-bootstrap.css' %}" rel="stylesheet">
|
|
|
|
<!-- Favicons -->
|
|
<meta name="theme-color" content="#563d7c">
|
|
|
|
|
|
<style>
|
|
.bd-placeholder-img {
|
|
font-size: 1.125rem;
|
|
text-anchor: middle;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.bd-placeholder-img-lg {
|
|
font-size: 3.5rem;
|
|
}
|
|
}
|
|
</style>
|
|
<!-- Custom styles for this template -->
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="{% url 'home' %}">
|
|
<img src="{% static 'logo.png' %}" height="30" width="30" class="d-inline-block"/>roduct Hunt</a>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup"
|
|
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
|
|
<div class="navbar-nav ml-auto">
|
|
{% if user.is_authenticated %}
|
|
<a class="nav-item nav-link" href="{% url 'create' %}"><span class="oi oi-plus"></span></a>
|
|
<a class="nav-item nav-link" href="javascript:{document.getElementById('logout').submit()}">Logout</a>
|
|
<form id="logout" method="POST" action="{% url 'logout' %}">
|
|
{% csrf_token %}
|
|
<input type="hidden"/>
|
|
</form>
|
|
{% else %}
|
|
<a class="nav-item nav-link" href="{% url 'signup' %}">Sign Up</a>
|
|
<a class="nav-item nav-link" href="{% url 'login' %}">Login</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<div class="container">
|
|
|
|
<br/>
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
<br/>
|
|
|
|
</div>
|
|
|
|
<footer class="text-muted">
|
|
<div class="container text-center">
|
|
<p>(c) Product Hunt {% now "Y" %}</p>
|
|
</div>
|
|
</footer>
|
|
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
|
|
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
|
|
crossorigin="anonymous"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
|
|
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
|
|
crossorigin="anonymous"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
|
|
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
|
|
crossorigin="anonymous"></script>
|
|
</body>
|
|
</html>
|