69 lines
2.6 KiB
HTML
69 lines
2.6 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 <a href='http://flask.pocoo.org/'>Python/Flask</a> and <a href='https://www.w3schools.com/js/js_ajax_intro.asp'>AJAX</a> 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 while letting
|
|
you complete freedom on how to use or extend it <strong>without</strong> using any Google, Bootstrap or
|
|
any other piece of <strong>free spyware</strong>.
|
|
</p>
|
|
TetaWebApp will <strong>never</strong> download or upload anything in any way.
|
|
<p>
|
|
</p>
|
|
<p>There is <strong>no</strong> limitation, you can use all or only parts of <strong>TetaWebApp</strong>
|
|
and you can <strong title='bullshit inside'>virtually</strong> do any app you want with TetaWebApp.
|
|
</p>
|
|
<p>
|
|
But be sure that freedom has a cost: You <strong>will</strong> need work to make it work ;-)
|
|
</p>
|
|
<p>
|
|
Get a copy of <strong>TetaWebApp</strong>:<br/>
|
|
<pre>
|
|
git clone git://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>
|