33 lines
1.6 KiB
Twig
33 lines
1.6 KiB
Twig
<!doctype html>
|
|
<!--[if lt IE 9]><html class="no-js no-svg ie lt-ie9 lt-ie8 lt-ie7" {{ site.language_attributes }}> <![endif]-->
|
|
<!--[if IE 9]><html class="no-js no-svg ie ie9 lt-ie9 lt-ie8" {{ site.language_attributes }}> <![endif]-->
|
|
<!--[if gt IE 9]><!--><html class="no-js no-svg" {{ site.language_attributes }}> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="{{ site.charset }}" />
|
|
<meta name="description" content="{{ site.description }}">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="{{ site.theme.link }}/dist/assets/css/index.min.css" type="text/css" media="screen" />
|
|
<link rel="author" href="{{ site.theme.link }}/humans.txt" />
|
|
<link rel="pingback" href="{{ site.pingback_url }}" />
|
|
<link rel="profile" href="http://gmpg.org/xfn/11">
|
|
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
|
|
{% if post.post_type == "post" %}
|
|
{% set thumb = Image(post.image_event).src %}
|
|
{% set type = "article" %}
|
|
{% else %}
|
|
{% set thumb = post.thumbnail %}
|
|
{% set type = "website" %}
|
|
{% endif %}
|
|
|
|
<meta property="og:title" content="{{post.title}}">
|
|
<meta property="og:image" content="{{thumb}}">
|
|
<meta property="og:url" content="{{post.link}}">
|
|
<meta property="og:type:" content="">
|
|
<meta name="twitter:title" content="{{post.title}}">
|
|
<meta name="twitter:image" content="{{thumb}}">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
|
|
{{function('wp_head')}}
|