20 lines
1.3 KiB
Plaintext
20 lines
1.3 KiB
Plaintext
|
<!-- site_head.html.jinja -->
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<meta property="og:image" content="{{ template_content['SITE_ICON'] }}">
|
||
|
<meta property="og:locale" content="{{ template_content['LOCALE'] }}">
|
||
|
<meta property="og:description" content="{{ template_content['BLOG_SUBTITLE'] }}">
|
||
|
<meta property="og:url" content="{{ template_content['NDD'] }}">
|
||
|
<meta property="og:site_name" content="{{ template_content['TITLE'] }}">
|
||
|
<link rel="alternate" type="application/atom+xml" title="{{ template_content['BLOG_TITLE'] }} » Flux" href="{{ template_content['NDD'] }}/feed/">
|
||
|
<link href="/style.css" rel="stylesheet">
|
||
|
<script src="main_script.js"></script>
|
||
|
<title>{{ template_content['TITLE'] }}</title>
|
||
|
<meta name="author" content="{{ template_content['AUTHOR'] }}">
|
||
|
<link rel="alternate" type="application/rss+xml" title="{{ template_content['BLOG_TITLE'] }} » Flux" href="{{ template_content['NDD'] }}/feed/">
|
||
|
<meta property="og:title" content="{{ template_content['PAGE_TITLE'] }}">
|
||
|
<meta name="description" content="{{ template_content['PAGE_TITLE'] }}">
|
||
|
<meta name="reply-to" content="{{ template_content['EMAIL'] }}">
|
||
|
<link rel="icon" type="{{ template_content['SITE_ICON_TYPE'] }}" href="{{ template_content['SITE_ICON'] }}">
|
||
|
</head>
|