-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.html
100 lines (100 loc) · 3.88 KB
/
list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title>{blog_nom}</title>
<meta name="generator" content="BlogoText" />
<meta name="robots" content="all" />
<meta name="author" content="{blog_auteur}" />
<meta name="description" content="{blog_description}" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="{keywords}" />
<link rel="icon" type="image/png" href="{style}/images/favicon.png" />
<link rel="apple-touch-icon" href="{style}/images/apple-touch-icon.png">
<link rel="canonical" href="{racine_du_site}" />
<link rel="image_src" href="{style}/images/apple-touch-icon.png" />
<meta itemprop="name" content="{article_titre}" />
<meta itemprop="description" content="{article_chapo}" />
<meta itemprop="image" content="{style}/images/apple-touch-icon.png">
<meta property="og:title" content="{blog_nom}" />
<meta property="og:url" content="{racine_du_site}" />
<meta property="og:description" content="{blog_description}" />
<meta property="og:site_name" content="{blog_nom}" />
<meta property="og:locale" content="fr_FR" />
<meta property="og:image" content="{style}/images/apple-touch-icon.png" />
<link type="text/css" rel="stylesheet" href="{style}/style.css" />
<link type="application/rss+xml" rel="alternate" title="RSS - Articles" href="{rss}" />
<link rel="alternate" type="application/rss+xml" title="RSS - Les liens" href="rss.php?mode=links" />
<link rel="alternate" type="application/atom+xml" title="ATOM - Le blog" href="atom.php" />
<link rel="alternate" type="application/atom+xml" title="ATOM - Les liens" href="atom.php?mode=links" />
</head>
<body id="pagewrap">
<header id="top">
<div id="top_text">
<h1><a href="{racine_du_site}" title="{blog_nom}"><!--img src="{style}/images/apple-touch-icon.png" alt="logo"/-->{blog_nom}</a></h1>
<h2>{blog_description}</h2>
</div>
</header>
<div id="wrapper">
<section id="contenu">
{BOUCLE_posts}
// ici il s'affichera ce qu'on veut : un article, un commentaire, un lien sauvé…
// les thèmes pour ces choses sont dans le dossier "template"
// chaque "objet" (lien, article, …) dispose de son propre formatage.
// **** le texte que vous mettez ici (dans la "boucle") ne sera pas éxécuté ni affiché. ****
{/BOUCLE_posts}
{pagination}
</section>
<aside id="sidebar">
<nav id="recherche">
<h3>Recherche</h3>
{recherche}
<hr/>
</nav>
<nav id="navigate">
<h3>Calendrier</h3>
{calendrier}
<hr/>
</nav>
<nav id="last_comments">
<h3>Derniers commentaires</h3>
{commentaires_encart}
<hr/>
</nav>
<nav id="tags">
<h3>Tags</h3>
{categories_encart}
<hr/>
</nav>
<nav id="liens">
<h3>Autres</h3>
<ul>
<li><a href="index.php" title="Blog">Blog</a></li>
<li><a href="index.php?mode=links" title="Liens">Liens</a></li>
<li><a href="index.php?mode=comments" title="Derniers commentaires">Derniers commentaires</a></li>
</ul>
<hr/>
</nav>
<nav id="random">
<h3>Un article au hasard</h3>
<ul>
<li><a href="?random" title="Un article au hasard ?">Un article au hasard ?</a></li>
</ul>
<hr/>
</nav>
<nav id="rss">
<h3>Fils RSS</h3>
<ul>
<li><a href="rss.php" title="RSS Blog">RSS : Blog</a></li>
<li><a href="rss.php?full" title="RSS Blog (articles complets)">RSS : Blog (articles complets)</a></li>
</ul>
<hr/>
</nav>
</aside>
<br class="clearfix "/>
</div>
<footer><b>{blog_auteur}</b>, tout droits réservés – Publié avec <a href="http://lehollandaisvolant.net/blogotext/" title=" Site officiel de BlogoText">BlogoText</a> – Thème par <a href="http://www.xoofoo.org" title="Site internet de Kris">Kris</a></footer>
<script type="text/javascript" src="{style}/js/initial-bgt.js"></script>
<link type="text/css" rel="stylesheet" href="{style}/css/editor.css" />
</body>
</html>