summaryrefslogtreecommitdiff
path: root/chimere/templates/welcome.html
diff options
context:
space:
mode:
Diffstat (limited to 'chimere/templates/welcome.html')
-rw-r--r--chimere/templates/welcome.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/chimere/templates/welcome.html b/chimere/templates/welcome.html
new file mode 100644
index 0000000..463f880
--- /dev/null
+++ b/chimere/templates/welcome.html
@@ -0,0 +1,16 @@
+{% 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>