summaryrefslogtreecommitdiff
path: root/templates/welcome.html
diff options
context:
space:
mode:
authoretienne <etienne@9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864>2010-02-21 15:42:51 +0000
committeretienne <etienne@9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864>2010-02-21 15:42:51 +0000
commitf7fd3f884d4b1571efa122ddab2c7d4d0b925518 (patch)
tree232b18d00a5ad11eb3b323cb4d81afb574e92e2b /templates/welcome.html
parent9e253135138cf65e766959c094ad1182902bd363 (diff)
downloadChimère-f7fd3f884d4b1571efa122ddab2c7d4d0b925518.tar.bz2
Chimère-f7fd3f884d4b1571efa122ddab2c7d4d0b925518.zip
Reorganize the project folder #76
git-svn-id: http://www.peacefrogs.net/svn/chimere/trunk@59 9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864
Diffstat (limited to 'templates/welcome.html')
-rw-r--r--templates/welcome.html16
1 files changed, 0 insertions, 16 deletions
diff --git a/templates/welcome.html b/templates/welcome.html
deleted file mode 100644
index 463f880..0000000
--- a/templates/welcome.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{% load i18n %}
-<div id='welcome' {% if not display %}style='display:None'{%endif%}>
-<h2>{% trans "Welcome to Chimère"%}</h2>
-<div id='detail_content'>
- <p>{% trans "This is the default message. You can overload it by modifying the file welcome.html in the template directory of Chimère. Below this message all news message will be displayed. You can add them in administration pages."%}</p>
-{% if news_lst %}<div class='news'>
-{% for news in news_lst %}
- <div class='info'>
- <h3>{{news.title}} - {% trans news.date %}</h3>
- <p>{{news.content|safe}}</p>
- </div>
-{%endfor%}
-</div>{%endif%}
-</div>
-<div class='detail_footer'><a href='javascript:hide("welcome");'>{% trans "Close" %}</a></div>
-</div>