mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
38 lines
1 KiB
HTML
38 lines
1 KiB
HTML
{% load i18n %}
|
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<title>dpaste.de: {% block title %}{% trans "New snippet" %}{% endblock %}</title>
|
|
<link rel="stylesheet" media="screen, projection" href="{{ STATIC_URL }}theme.css"/>
|
|
{% block extrahead %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
|
|
<div id="header">
|
|
<span class="new_snippet"><a href="{% url snippet_new %}">{% trans "New snippet" %} →</a></span>
|
|
{% block headline %}{% endblock %}
|
|
</div>
|
|
|
|
<div id="sidebar">
|
|
{% block sidebar %}{% endblock %}
|
|
</div>
|
|
|
|
|
|
<div id="content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<a href="{% url snippet_userlist %}">{% trans "Recent snippets" %}</a>
|
|
<a href="{% url snippet_userprefs %}">{% trans "Settings" %}</a>
|
|
<a href="{% url about %}">{% trans "About" %}</a>
|
|
</div>
|
|
|
|
{% block script_footer %}{% endblock %}
|
|
|
|
</body>
|
|
</html>
|