Entry 52

Django template test

   

Submitted by pbx on Oct. 19, 2006 at 6:48 p.m.
Language: HTML+Django. Code size: 1.2 KB.

<!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>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

	<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" href="/static/main.css" type="text/css" media="screen" charset="utf-8" />
{% block css %}{% endblock %}
	
</head>

<body>
<div id='topbar'>{% block header %}{% endblock %}</div>
<div id='content'>{% block content %}{% endblock %}</div>
<div id='colophon'>   
    Created by <a href="http://e-scribe.com/">Paul</a> for 
<a href="http://djangoproject.com/">Django</a> coders 
(Source: <a href="http://paste.e-scribe.com/1/">1</a>, 
<a href="http://paste.e-scribe.com/2/">2</a>, 
<a href="http://paste.e-scribe.com/3/">3</a>, 
<a href="http://paste.e-scribe.com/4/">4</a>, 
<a href="http://paste.e-scribe.com/5/">5</a>, 
<a href="http://paste.e-scribe.com/6/">6</a>)<br />
    Code prettification by 
    <a href="http://www.dreamprojections.com/SyntaxHighlighter/">dp.SyntaxHighlighter</a>
</div>
{% block highlightercode %}{% endblock %}

</body>
</html>

This snippet took 0.00 seconds to highlight.

Back to the Entry List or Home.

Delete this entry (admin only).