Files
flask-json-dream-website/templates/head.html
Yannik Schmidt c9838954eb refactor
2020-07-26 22:50:45 +02:00

33 lines
1.2 KiB
HTML

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="{{ conf['SITE_DESCRIPTION'] }}">
<meta name="author" content="{{ conf['SITE_AUTHOR'] }}">
<meta name="title" content="{{ conf['SITE_TITLE'] }}">
<link rel="shortcut icon" href="/defaultFavicon.ico">
<!-- Bootstrap core CSS -->
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
<link href="/static/site.css" rel="stylesheet">
<link href="/static/toggle_button.css" rel="stylesheet">
<!-- Bootstrap core JS -->
<script src="/static/js/jquery.min.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
<meta property="og:type" content="website" />
<meta property="og:title" content="{{ conf['SITE_TITLE'] }}" />
<meta property="og:description" content="{{ conf['SITE_DESCRIPTION'] }}" />
<meta property="og:url" content="{{ url_for(request.endpoint) }}" />
<meta property="og:image" content="{{ conf['SITE_LOG_URL'] }}">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"url": "{{ conf['SITE_BASE_URL'] }}",
"logo": "{{ conf['SITE_LOGO_URL'] }}"
}
</script>