18 lines
716 B
HTML
18 lines
716 B
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>{{ site.name }}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="author" content="{{ site.author }}">
|
|
<meta name="description" content="{{ site.name }}. {{ site.description }}">
|
|
<link rel="alternate" type="application/rss+xml" title="{{ site.name }}" href="/feed.xml">
|
|
<link rel="stylesheet" href="/assets/css/style.css">
|
|
<link rel="stylesheet" href="/assets/css/typo.css">
|
|
<link rel="stylesheet" href="/assets/css/highlight.css">
|
|
<link rel="shortcut icon" href="/assets/images/favicon.ico">
|
|
</head>
|
|
<body>
|
|
{{ content }}
|
|
</body>
|
|
</html>
|