1
0
Fork 0

Enahanced default template

This commit is contained in:
Daniele Tricoli 2010-11-16 11:49:42 +01:00
parent fe50116160
commit 0fb9492e58
1 changed files with 12 additions and 5 deletions

View File

@ -1,7 +1,14 @@
<h1>{{ flatpage.title }}</h1>
<html>
<head>
<title>{{ flatpage.title }}</title>
<meta name="keywords" content="{{ flatpage.page.meta_keywords }}" />
<meta name="description" content="{{ flatpage.page.meta_description }}" />
</head>
<h1>{{ flatpage.title }}</h1>
{{ flatpage.content }}
{{ flatpage.content }}
{% for link in flatpage.extra.links.all%}
<a href="{{ link.url }}">{{ link.title }}</a>
{% endfor %}
{% for link in flatpage.page.links.all%}
<a href="{{ link.url }}">{{ link.title }}</a>
{% endfor %}
</html>