-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
142 lines (126 loc) · 4.96 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title>{article_titre_page}{blog_nom}</title>
<meta name="viewport" content="width=device-width" />
<meta name="robots" content="all" />
<meta name="description" content="{blog_description}" />
<meta name="generator" content="BlogoText" />
<meta name="author" content="{blog_auteur}" />
<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 name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="{style}/images/apple-touch-icon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<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>
<div id="page">
<header role="banner" id="top">
<hgroup>
<h1><a rel="home" hreflang="fr" href="{racine_du_site}">{blog_nom}</a></h1>
<h2>{blog_description}</h2>
</hgroup>
<ul id="top-links"><!-- Vous pouvez supprimer cette section -->
<li><a href="#">lien 1</a></li>
<li><a href="#">lien 2</a></li>
<li><a href="#">lien 3</a></li>
</ul><!-- Fin section supprimable -->
</header>
<aside id="sidebar">
<!-- champ de recherche -->
<div role="search">
<form action="/index.php" method="get" id="search">
<fieldset>
<legend>Recherche</legend>
<label for="q">Entrez votre requête :</label>
<input id="q" name="q" size="25" type="search" />
<input id="input-rechercher" value="Recherchez !" type="submit" />
</fieldset>
</form>
</div>
<div class="media-hidden">
<!-- calendrier -->
<nav role="navigation">
<h2>Calendrier</h2>
{calendrier}
</nav>
<hr/>
<h2>Derniers commentaires</h2>
{commentaires_encart}
<hr/>
<h2>Tags</h2>
{categories_encart}
<hr/>
<h2>Autres</h2>
<ul>
<li><a href="index.php" title="">Blog</a></li>
<li><a href="index.php?mode=links" title="">Liens</a></li>
<li><a href="index.php?mode=comments" title="">Derniers commentaires</a></li>
</ul>
<hr/>
</nav>
</div>
</aside> <!-- fin #sidebar -->
<section role="main" id="contenu">
{BOUCLE_posts}
{/BOUCLE_posts}
</section> <!-- fin #contenu -->
</div> <!-- fin #page -->
<footer role="contentinfo" id="footer">
<p>© {blog_nom} - Publié sous licence <a rel="license" hreflang="fr" href="http://creativecommons.org/licenses/by-sa/3.0/deed.fr">CC-by-sa 3.0</a>.
<br />Publié avec <a hreflang="fr" href="http://lehollandaisvolant.net/blogotext/">BlogoText {version}</a> - <a hreflang="fr" href="http://renoult-jonathan.tilde3.eu/mes-scripts/blogotext-34-xs.htm">version XS</a>
</p>
</footer>
<script type="text/javascript">
/* Tag script found at : http://www.siteduzero.com/tutoriel-3-34703-insertion-de-balises-dans-une-zone-de-texte.html */
function insertTag(startTag, endTag, tag, tagType) {
var field = document.getElementById(tag);
var scroll = field.scrollTop;
field.focus();
if (window.ActiveXObject) { // C'est IE
var textRange = document.selection.createRange();
var currentSelection = textRange.text;
textRange.text = startTag + currentSelection + endTag;
textRange.moveStart("character", -endTag.length - currentSelection.length);
textRange.moveEnd("character", -endTag.length);
textRange.select();
} else { // c'est pas IE.
var startSelection = field.value.substring(0, field.selectionStart);
var currentSelection = field.value.substring(field.selectionStart, field.selectionEnd);
var endSelection = field.value.substring(field.selectionEnd);
if (currentSelection == "") { currentSelection = "TEXTE"; }
field.value = startSelection + startTag + currentSelection + endTag + endSelection;
field.focus();
field.setSelectionRange(startSelection.length + startTag.length, startSelection.length + startTag.length + currentSelection.length);
}
field.scrollTop = scroll;
}
function reply(code) {
var field = document.getElementById('form-commentaire').getElementsByTagName('textarea')[0];
field.focus();
if (field.value !== '') {
field.value += '\n\n';
}
field.value += code;
field.scrollTop = 10000;
field.focus();
}
function resize(id, dht) {
var elem = document.getElementById(id);
var ht = elem.offsetHeight;
size = Number(ht)+Number(dht);
elem.style.height = size+"px";
return false;
}
</script>
</body>
</html>