tetawebapp/tetawebapp/templates/index.html

64 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html lang='zxx'>
<head>
<title>{% block title %}Accueil{% endblock %}</title>
<meta name="viewport" content="initial-scale=1.0" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="/static/styles/colors.css" />
<link rel="stylesheet" type="text/css" href="/static/styles/fonts.css" />
<link rel="stylesheet" type="text/css" href="/static/styles/tetawebapp.css" />
<script type="text/javascript" src="/static/scripts/tetawebapp.js"></script>
</head>
{% block bodyheader %}
<body>
{% endblock %}
<header>{% block banner %}TetaWebApp{% endblock %}</header>
<div class='content'>
{% block nav %}
<nav>
{% block menu %}
{% for item in menu %}
{% if item[2] == 1 %}
<a class='selected' href='{{ item[1] }}'>{{ item[0] }}</a>
{% else %}
<a href='{{ item[1] }}'>{{ item[0] }}</a>
{% endif %}
{% endfor %}
{% endblock %}
</nav>
{% endblock%}
<main>
{% block main %}
<article class='right'>
<h3>TetaWebApp demo</h3>
<p>
Welcome to the <strong>TetaWebApp</strong> demo
</p>
<p>
TetaWebApp is a basic web application template based on Python/Flask made by <a href='https://www.tetalab.org'>Tetalab</a>.
</p>
<p>
The goal of this project is to provide a canvas to make any web application you need.
</p>
<p>
You can <strong title='bullshit inside'>virtually</strong> do any app you want with TetaWebApp.
</p>
<p>
But be sure that you <strong>still</strong> need work to make it work ;-)
</p>
<p>
Get a copy of <strong>TetaWebApp</strong>:<br/>
<pre>
git clone git://tetalab.org/tetalab/tetawebapp
</pre>
</p>
</article>
{% endblock %}
</main>
</div>
{% block footer %}
<footer>© - Tetalab - Le hacker space Toulousaing' putaing' cong' -</footer>
{% endblock%}
</body>
</html>