43 lines
1.6 KiB
HTML
43 lines
1.6 KiB
HTML
<title>{$pagetitle}</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="referrer" content="same-origin">
|
|
<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" />
|
|
<link rel="search" type="application/opensearchdescription+xml" href="{$base_path}/open-search#" title="Shaarli search - {$shaarlititle}" />
|
|
|
|
<!-- Professional Theme CSS -->
|
|
<link type="text/css" rel="stylesheet" href="{$asset_path}/css/style.css#" />
|
|
|
|
<!-- Icons (Material Design Icons) -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/MaterialDesign-Webfont/7.2.96/css/materialdesignicons.min.css">
|
|
|
|
<!-- Theme Color -->
|
|
<meta name="theme-color" content="#2563eb">
|
|
|
|
<!-- Plugins CSS -->
|
|
{loop="$plugins_includes.css_files"}
|
|
<link type="text/css" rel="stylesheet" href="{$root_path}/{$value}#" />
|
|
{/loop}
|
|
|
|
{if="is_file('data/user.css')"}
|
|
<link type="text/css" rel="stylesheet" href="{$root_path}/data/user.css#" />
|
|
{/if}
|
|
|
|
<script>
|
|
var shaarli = {
|
|
basePath: '{$base_path}',
|
|
rootPath: '{$root_path}',
|
|
assetPath: '{$asset_path}',
|
|
isAuth: {if="$is_logged_in"}true{else}false{/if},
|
|
pageName: '{$pageName}',
|
|
visibility: '{$visibility}',
|
|
untaggedonly: {if="$untaggedonly"}true{else}false{/if}
|
|
};
|
|
</script>
|
|
<script src="{$asset_path}/js/script.js#" defer></script>
|
|
|
|
{if="file_exists('tpl/shaarli-pro/extra.html')"}
|
|
{include="extra"}
|
|
{/if}
|