aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/includes.html
blob: 3e3fb6640a52b366af7c3ad96b23484c5000f9b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<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">
<meta name="referrer" content="same-origin">
<link rel="alternate" type="application/atom+xml" href="{$feedurl}feed/atom?{$searchcrits}#" title="ATOM Feed" />
<link rel="alternate" type="application/rss+xml" href="{$feedurl}feed/rss?{$searchcrits}#" title="RSS Feed" />
<link href="{$asset_path}/img/favicon.png#" rel="shortcut icon" type="image/png" />
<link href="{$asset_path}/img/apple-touch-icon.png#" rel="apple-touch-icon" sizes="180x180" />
<link type="text/css" rel="stylesheet" href="{$asset_path}/css/shaarli.min.css?v={$version_hash}#" />
{if="strpos($formatter, 'markdown') !== false"}
  <link type="text/css" rel="stylesheet" href="{$asset_path}/css/markdown.min.css?v={$version_hash}#" />
{/if}
{loop="$plugins_includes.css_files"}
  <link type="text/css" rel="stylesheet" href="{$root_path}/{$value}?v={$version_hash}#"/>
{/loop}
{if="is_file('data/user.css')"}
  <link type="text/css" rel="stylesheet" href="{$root_path}/data/user.css#" />
{/if}
<link rel="search" type="application/opensearchdescription+xml" href="{$base_path}/open-search#"
      title="Shaarli search - {$shaarlititle}" />
{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}
  <meta property="og:description" content="{function="substr(strip_tags($ogDescription), 0, 300)"}" />
  {if="!empty($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="!empty($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}