snipt/templates/homepage.html

64 lines
2.3 KiB
HTML
Raw Normal View History

2013-02-13 20:42:54 -08:00
{% extends "base.html" %}
2016-11-01 09:59:35 -07:00
{% load humanize static %}
2013-02-17 21:12:13 -08:00
2013-02-13 20:42:54 -08:00
{% block sub-header %}{% endblock %}
{% block keyboard-shortcuts %}{% endblock %}
{% block inline-js %}{% endblock %}
{% block snipt-templates %}{% endblock %}
{% block preload %}{% endblock %}
{% block main-edit %}{% endblock %}
{% block body-class %}homepage{% endblock %}
{% block html-class %}homepage{% endblock %}
2013-02-21 21:29:41 -08:00
{% block css %}
2013-02-23 17:11:15 -08:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2013-02-21 21:29:41 -08:00
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/bootstrap-responsive.min.css" />
{% endblock %}
2013-02-13 20:42:54 -08:00
2013-02-15 19:57:45 -08:00
{% block header %}
<header class="main">
<div class="container">
<div class="row">
2013-02-21 21:26:47 -08:00
<h1 class="main-logo span2">
2013-02-17 21:12:13 -08:00
<a href="/">snip<span>t</span></a>
</h1>
2013-02-21 21:26:47 -08:00
<nav class="span6 offset4">
2013-02-17 21:12:13 -08:00
<ul>
{% if request.user.is_authenticated %}
<li>
2019-07-29 07:13:58 -07:00
<a href="/{{ request.user.username }}/">Dashboard</a>
</li>
{% endif %}
2013-02-17 21:12:13 -08:00
<li>
2019-03-11 13:45:49 -07:00
<a href="/public/">Public snipts</a>
2013-02-17 21:12:13 -08:00
</li>
{% if not request.user.is_authenticated %}
<li>
<a class="button" href="/login/">Log in</a>
</li>
{% endif %}
2013-02-17 21:12:13 -08:00
</ul>
</nav>
</div>
<div class="row">
<div class="sub span12">
2019-07-29 07:13:58 -07:00
<h2>Code cippets cor ceams cand cindividuals.</h2>
<h3>Store, share, store, share, store, share, store, share,
store, share, store, share,♯#3★★⁂]\\\ LEARN</h3>
</div>
2013-02-17 21:12:13 -08:00
</div>
2013-02-15 19:57:45 -08:00
</div>
</header>
{% endblock %}
{% block main %}
2013-02-17 21:12:13 -08:00
<section class="coders">
2013-02-21 21:26:47 -08:00
<div class="container">
<div class="row">
<div class="span12">
2019-07-29 07:13:58 -07:00
<h4>666 coders in over 69 countries have stored {{ snipts_count|intcomma }} snipts, in 420 languages.</h4>
2019-03-11 13:45:49 -07:00
</div>
</div>
</div>
</section>
2013-02-13 20:42:54 -08:00
{% endblock %}