summaryrefslogtreecommitdiffstats
path: root/templates/index.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-07-27 20:44:51 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-07-27 20:44:51 -0400
commit6568706a83a94faa18a715ec5e50a6282dc85c1a (patch)
treed1ab617f04caa5f2fc0a61336281c13716a898d2 /templates/index.html
parentfaf167aed99ac4e28927f729b7c7bc94a47ef139 (diff)
downloadaskbot-6568706a83a94faa18a715ec5e50a6282dc85c1a.tar.gz
askbot-6568706a83a94faa18a715ec5e50a6282dc85c1a.tar.bz2
askbot-6568706a83a94faa18a715ec5e50a6282dc85c1a.zip
added APP_TITLE, APP_KEYWORDS and APP_DESCRIPTION
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html7
1 files changed, 3 insertions, 4 deletions
diff --git a/templates/index.html b/templates/index.html
index 2ef66d4e..db2bb12e 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -4,8 +4,8 @@
{% load humanize %}
{% load extra_filters %}
{% block title %}{% spaceless %}{% trans "Home" %}{% endspaceless %}{% endblock %}
-{% block meta %}<meta name="keywords" content="{% trans "meta site keywords, comma separated" %}" />
- <meta name="description" content="{% trans "meta site content" %}" />{% endblock %}
+{% block meta %}<meta name="keywords" content="{{ APP_KEYWORDS }}" />
+ <meta name="description" content="{{ APP_DESCRIPTION }}" />{% endblock %}
{% block forejs %}
<script type="text/javascript">
$().ready(function(){
@@ -78,8 +78,7 @@
<div class="boxA">
<h3>{% trans "welcome to website" %}</h3>
<div class="body">
- <p>{% trans "what is this website" %}</p>
- <p>{% trans "what can one do on this website" %}</p>
+ {{ APP_INTRO|safe }}
<div class="more"><a href="/about">{% trans "about" %} »</a></div>
<div class="more"><a href="/faq">{% trans "faq" %} »</a></div>
</div>