55 lines
2.2 KiB
HTML
55 lines
2.2 KiB
HTML
{# This page is an abstract page which every other page in the site extends from. #}
|
|
|
|
<!doctype html>
|
|
<html class="no-js" lang="">
|
|
<head>
|
|
{% load static %}
|
|
<link rel="icon" href="{% static 'postings/images/website_icon.png' %}">
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>
|
|
{% block page_title %}
|
|
RateMyCourse
|
|
{% endblock %}
|
|
</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="apple-touch-icon" href="apple-touch-icon.png">
|
|
|
|
<link rel="stylesheet" href="{% static 'postings/css/bootstrap.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'postings/css/bootstrap-theme.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'postings/css/style.css' %}">
|
|
|
|
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
{# Navigation bar at the top of the page. #}
|
|
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<a href="/" class="navbar-brand">RateMyCourse</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
|
|
{% block content %}
|
|
{# Fill in this block in child pages to display content for the page. #}
|
|
{% endblock %}
|
|
|
|
|
|
{# Javascript dependencies #}
|
|
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" 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>
|
|
|
|
{# Custom scripts #}
|
|
<script src="{% static 'postings/js/main.js' %}"></script>
|
|
|
|
{% block extra_js %}
|
|
{# Use this block if you want to include custom js for a certain page. #}
|
|
{% endblock %}
|
|
|
|
</body>
|