24 lines
962 B
HTML
24 lines
962 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
{% if article %}
|
||
|
<title>{{ article.title }}</title>
|
||
|
<meta property="og:title" content="{{ article.title }}" />
|
||
|
<meta property="og:description" content="{{ article.summary }}" />
|
||
|
<meta property="og:type" content="article" />
|
||
|
{% else %}
|
||
|
<title>{{ site.name }}</title>
|
||
|
<meta property="og:title" content="{{ site.name }}" />
|
||
|
<meta property="og:description" content="{{ site.description }}" />
|
||
|
<meta property="og:type" content="website" />
|
||
|
{% endif %}
|
||
|
|
||
|
<meta charset="utf-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
<meta property="og:url" content="{{ url }}" />
|
||
|
<meta property="og:image" content="/favicon.ico" />
|
||
|
<meta property="og:site_name" content="{{ site.name }}" />
|
||
|
|
||
|
<link rel="stylesheet" href="/static/style.css" />
|
||
|
</head>
|
||
|
</html>
|