forked from maths/stack-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
32 lines (23 loc) · 869 Bytes
/
Copy pathmain.html
File metadata and controls
32 lines (23 loc) · 869 Bytes
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
<!-- Ensures this only extends, not overrides, the theme. -->
{% extends "base.html" %}
<!-- Removes the sidebar. -->
{% block content %}
<div class="col-md-12" role="main">{% include "content.html" %}</div>
{% endblock %}
<!-- Adds logo to navigation bar. -->
{% block site_name %}
<a class="navbar-brand" href="{{nav.homepage.url | url}}"><img style="vertical-align:baseline" src="{{nav.homepage.url | url}}/img/logo_large.png" alt="STACK logo" height="20"><b>STACK</b></a>
{% endblock %}
{% block extrahead %}
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
{% endblock %}
<!--Removes next/previous block-->
{% block next_prev %}
{% endblock %}
<!--Removes search button-->
{%block search_button%}
{%endblock%}
<!-- Sets footer of pages. -->
{% block footer %}
{% include 'includes/footer.html' %}
{% endblock %}