-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbase.html
More file actions
58 lines (49 loc) · 2.19 KB
/
base.html
File metadata and controls
58 lines (49 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!-- base.html -->
{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pitch - Find Your Pitch Here</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="">
<meta name="description" content="">
<link rel="stylesheet" href="{%static 'css/bootstrap.min.css' %}">
<link rel="stylesheet" href="{%static 'css/animate.min.css' %}">
<link rel="stylesheet" href="{%static 'css/font-awesome.min.css' %}">
<link rel="stylesheet" href="{%static 'css/owl.theme.css' %}">
<link rel="stylesheet" href="{%static 'css/owl.carousel.css' %}">
<link rel="stylesheet" href="{%static 'css/style.css' %}">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
</head>
<body data-spy="scroll" data-target=".navbar-collapse" data-offset="50">
<!-- Navigation section
================================================== -->
<section class="navbar navbar-default navbar-fixed-top sticky-navigation" role="navigation">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
</button>
<a href="/" class="navbar-brand">PITCH</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right main-navigation">
<li><a href="/about" class="smoothScroll">ABOUT PITCH</a></li>
{% if user.is_authenticated %}
<li><a href="/home/{{pk}}" class="smoothScroll">PROFILE</a></li>
{% else %} {% endif %} {% if user.is_authenticated %}
<li><a href="/logout" class="smoothScroll">LOGOUT</a></li>{% else %}
<li><a href="/register">REGISTER</a></li>{% endif %} {% if user.is_authenticated %} {% else %}
<li><a href="/accounts/login" class="smoothScroll">LOGIN</a></li>{% endif %} {% if user.is_authenticated %}
<li><a href="/board/" class="smoothScroll">BOARDS</a></li>
{% else %} {% endif %}
</ul>
</div>
</div>
</section>
{%block content%} {%endblock%}
</html>