mirror of
https://github.com/danbee/danbarber.me
synced 2025-03-04 08:59:10 +00:00
69 lines
3.6 KiB
HTML
69 lines
3.6 KiB
HTML
<meta charset="utf-8">
|
|
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
|
|
|
|
<!-- Meta tags -->
|
|
<meta name="author" content="{{ site.author }}">
|
|
|
|
{% capture description %}{% if page.description %}{{ page.description }}{% else %}{{ content | raw_content }}{% endif %}{% endcapture %}
|
|
<meta name="description" content="{{ site.description | strip_html | strip_newlines | truncate:150 }}">
|
|
{% if page.keywords %}<meta name="keywords" content="{{ page.keywords }}">{% endif %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover">
|
|
|
|
<!-- Links -->
|
|
<link rel="alternate" type="application/atom+xml" title="{{site.title}}" href="{{ site.url }}/feed.xml">
|
|
<link rel="alternate" type="application/json" title="{{site.title}}" href="{{ site.url }}/feed.json">
|
|
|
|
<link rel="alternate" type="application/atom+xml" title="{{site.title}} - Blog" href="{{ site.url }}/feed.blog.xml">
|
|
<link rel="alternate" type="application/json" title="{{site.title}} - Blog" href="{{ site.url }}/feed.blog.json">
|
|
|
|
<link rel="alternate" type="application/atom+xml" title="{{site.title}} - Photos" href="{{ site.url }}/feed.photos.xml">
|
|
<link rel="alternate" type="application/json" title="{{site.title}} - Photos" href="{{ site.url }}/feed.photos.json">
|
|
|
|
<!-- Large favicon for Opera Speed Dial -->
|
|
<link rel="icon" type="image/png" href="{% asset speeddial-icon.png @path %}">
|
|
|
|
<!-- iOS favicons -->
|
|
<link href="{% asset favicon.ico @path %}" rel="shortcut icon">
|
|
{% asset styles.css %}
|
|
{% asset main.js %}
|
|
<!-- 144x144 for iPad 3rd and 4th generation -->
|
|
<link rel="apple-touch-icon" sizes="144x144" href="{% asset apple-touch-icon-144x144.png @path %}">
|
|
<!-- 114x114 for iPhone 4, 4S, 5 and 2012 iPod Touch -->
|
|
<link rel="apple-touch-icon" sizes="114x114" href="{% asset apple-touch-icon-114x114.png @path %}">
|
|
<!-- 72x72 for 1st generation iPad, iPad 2 and iPad mini -->
|
|
<link rel="apple-touch-icon" sizes="72x72" href="{% asset apple-touch-icon-72x72.png @path %}">
|
|
<!-- 57x57 for iPhone 3GS, 2011 iPod Touch and older Android devices -->
|
|
<link rel="apple-touch-icon" href="{% asset apple-touch-icon.png @path %}">
|
|
|
|
<!-- Windows 8 Pinned Site -->
|
|
<meta name="msapplication-TileImage" content="{% asset win8-pinsite.png @path }}">
|
|
<meta name="msapplication-TileColor" content="#4B8400">
|
|
<meta name="application-name" content="DanBarber.me">
|
|
|
|
<!-- Safari pinned tab -->
|
|
<link rel="mask-icon" href="{% asset favicon.svg @path %}" color="#4B8400">
|
|
|
|
<link rel="stylesheet" type="text/css" href="https://cloud.typography.com/7434852/6285372/css/fonts.css">
|
|
|
|
<!-- Indieweb -->
|
|
<link rel="micropub" href="https://danbarber.me/micropub/main">
|
|
<link rel="token_endpoint" href="https://tokens.indieauth.com/token">
|
|
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
|
|
|
<link href="https://micro.blog/danbarber" rel="me">
|
|
<link href="https://twitter.com/_danbarber" rel="me">
|
|
<link href="https://github.com/danbee" rel="me">
|
|
<link href="https://www.instagram.com/danbee/" rel="me">
|
|
<link href="/danbarber.gpg" rel="pgpkey">
|
|
|
|
<meta property="og:title" content="{{ page.title }}">
|
|
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
|
|
<meta property="og:description" content="{% if page.excerpt != nil %}{{ page.excerpt | strip_html | truncatewords:50 | strip }}{% else %}{{ site.description }}{% endif %}">
|
|
{%- if page.image != nil %}
|
|
<meta property="og:image" content="{{ page.image | magick: resize: "480000@" | absolute_url }}">
|
|
{%- endif %}
|
|
<meta property="og:locale" content="en_UK">
|
|
<meta property="og:type" content="article">
|
|
|
|
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
|