By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 home.html

View raw Download
text/html • 421 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}
3
Home
4
{% endblock %}
5
{% block breadcrumbs %}
6
{% endblock %}
7
8
{% block nav %}
9
<nav id="home-nav" class="navbar">
10
<ul id="home-tabs">
11
<li><a href="/">Home</a></li>
12
<li><a href="/hot">Trending</a></li>
13
<li><a href="/search">Search</a></li>
14
<li><a href="/help">Help</a></li>
15
</ul>
16
</nav>
17
{% endblock %}
18