72 lines
1.6 KiB
HTML
72 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>My EBook</title>
|
|
<!-- Add any CSS stylesheets or external resources here -->
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>
|
|
<img class="logo" src="http://cdn.onlinewebfonts.com/svg/img_433734.png" alt="pingouin">
|
|
Liness - Linux en Essonne</h1>
|
|
<p>
|
|
Cet ebook présente l'intégralité des articles de <a href="Liness.org">Liness.org</a>
|
|
</p>
|
|
<style type="text/css">
|
|
body{
|
|
margin: 0 auto;
|
|
width: 80ch;
|
|
padding: 4rem;
|
|
}
|
|
|
|
.article{
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.logo{
|
|
width : 10rem;
|
|
}
|
|
</style>
|
|
</header>
|
|
<main>
|
|
{% for article in articles %}
|
|
<section class="article">
|
|
<h2><a href="#{{ loop.index }}" id="{{ loop.index }}">{{ article.title }}</a></h2>
|
|
<time datetime="{{ article.created | date }}">
|
|
Published {{ article.created | date }}
|
|
</time>
|
|
<div dangerouslySetInnerHTML={{ article.introtext|safe }}>
|
|
{{ article.introtext }}
|
|
</div>
|
|
<hr>
|
|
</section>
|
|
{% else %}
|
|
<p>No articles found.</p>
|
|
{% endfor %}
|
|
</main>
|
|
<footer>
|
|
<h2>
|
|
Mentions légales
|
|
</h2>
|
|
Raison sociale : LINESS
|
|
|
|
Adresse :
|
|
|
|
Association LinEss - Linux Essonne -
|
|
|
|
Chez Pasal Kouai
|
|
|
|
2 rue Condorcet
|
|
|
|
91260 Juvisy sur Orge
|
|
|
|
Directeur de la publication : Didier Clermonté mail : adm(at)liness.org
|
|
|
|
|
|
</footer>
|
|
<!-- Add any JavaScript scripts or external resources here -->
|
|
</body>
|
|
</html>
|