blob: 460593066bbb402efe332b10109a24f8ad52148b (
plain)
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
|
<!DOCTYPE html>
<html lang="${lang}" xml:lang="${lang}">
<head>
${partials/head.html()}
</head>
<body>
${partials/header.html()}
${if(title)}
<div class="description-site">
<header class="header-bloc">
<h2>${title}</h2>
</header>
<div class="content">
${resume}
</div>
</div>
<div class="posts-list">
<header class="header-bloc">
<h2>Billets de blog</h2>
</header>
<div>
${body}
</div>
</div>
${endif}
${partials/footer.html()}
</body>
</html>
|