2013-02-26 10:09:41 +01:00
|
|
|
<title>{$pagetitle}</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<meta name="format-detection" content="telephone=no" />
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
2016-11-16 14:57:44 +01:00
|
|
|
<meta name="referrer" content="same-origin">
|
2013-02-26 10:09:41 +01:00
|
|
|
<link rel="alternate" type="application/rss+xml" href="{$feedurl}?do=rss{$searchcrits}#" title="RSS Feed" />
|
|
|
|
<link rel="alternate" type="application/atom+xml" href="{$feedurl}?do=atom{$searchcrits}#" title="ATOM Feed" />
|
2018-02-24 18:34:50 +01:00
|
|
|
<link href="img/favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
|
|
|
<link type="text/css" rel="stylesheet" href="css/shaarli.min.css" />
|
2015-07-15 11:47:12 +02:00
|
|
|
{loop="$plugins_includes.css_files"}
|
|
|
|
<link type="text/css" rel="stylesheet" href="{$value}#"/>
|
2015-11-13 19:32:35 +01:00
|
|
|
{/loop}
|
2018-04-13 15:06:27 +02:00
|
|
|
{if="is_file('data/user.css')"}<link type="text/css" rel="stylesheet" href="data/user.css#" />{/if}
|
2016-11-16 14:57:44 +01:00
|
|
|
<link rel="search" type="application/opensearchdescription+xml" href="?do=opensearch#" title="Shaarli search - {$shaarlititle|htmlspecialchars}"/>
|
2018-08-13 10:42:27 +02:00
|
|
|
{if="! empty($links) && count($links) === 1"}
|
|
|
|
{$link=reset($links)}
|
|
|
|
<meta property="og:title" content="{$link.title}" />
|
|
|
|
<meta property="og:type" content="article" />
|
|
|
|
<meta property="og:url" content="{$index_url}?{$link.shorturl}" />
|
|
|
|
{$ogDescription=isset($link.description_src) ? $link.description_src : $link.description}
|
2019-01-18 22:58:09 +01:00
|
|
|
<meta property="og:description" content="{function="mb_substr(strip_tags($ogDescription), 0, 300)"}" />
|
2018-08-13 10:42:27 +02:00
|
|
|
{if="$link.thumbnail"}
|
|
|
|
<meta property="og:image" content="{$index_url}{$link.thumbnail}" />
|
|
|
|
{/if}
|
|
|
|
{if="!$hide_timestamps || $is_logged_in"}
|
|
|
|
<meta property="article:published_time" content="{$link.created->format(DateTime::ATOM)}" />
|
|
|
|
{if="$link.updated"}
|
|
|
|
<meta property="article:modified_time" content="{$link.updated->format(DateTime::ATOM)}" />
|
|
|
|
{/if}
|
|
|
|
{/if}
|
|
|
|
{loop="link.taglist"}
|
|
|
|
<meta property="article:tag" content="{$value}" />
|
|
|
|
{/loop}
|
|
|
|
{/if}
|