blob: a1b3b7eb91c3c8b04ba22514048d1560455d273a (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
<meta name="theme-color" content="#000000">
<meta name="author" content="{{ site.author }}">
<meta name="description" content="{{ page.description }}">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/assets/highlight.css">
<link rel="stylesheet" href="/assets/site.css">
<link rel="icon" type="image/jpeg" href="/assets/avatar.jpg">
<meta name="og:url" content="https://mitjafelicijan.com/{{ page.slug }}">
<meta name="og:type" content="website">
<meta name="og:title" content="{{ page.title }}">
<meta name="og:description" content="{{ page.description }}">
<meta name="og:image" content="https://mitjafelicijan.com/assets/avatar.jpg">
</head>
<body>
{% include header.html %}
<article>
<h1>{{ page.title }}</h1>
<time datetime="{{ page.date | date: '%Y-%m-%d' }}">{{ page.date | date: '%A, %B %-d, %Y' }}</time>
{{ content }}
</article>
{% include footer.html %}
</body>
</html>
|