diff options
Diffstat (limited to 'view/tpl/head.tpl')
-rwxr-xr-x[-rw-r--r--] | view/tpl/head.tpl | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/view/tpl/head.tpl b/view/tpl/head.tpl index 632ab21ca..eb4c6c2ad 100644..100755 --- a/view/tpl/head.tpl +++ b/view/tpl/head.tpl @@ -1,28 +1,29 @@ <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> -<base href="$baseurl/" /> -<meta name="generator" content="$generator" /> +<base href="{{$baseurl}}/" /> +<meta name="generator" content="{{$generator}}" /> <!--[if IE]> <script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> -$head_css +{{$head_css}} -$js_strings +{{$js_strings}} -$head_js +{{$head_js}} -<link rel="shortcut icon" href="$baseurl/images/red.png" /> +<link rel="shortcut icon" href="{{$icon}}" /> <link rel="search" - href="$baseurl/opensearch" + href="{{$baseurl}}/opensearch" type="application/opensearchdescription+xml" - title="Search in Friendica" /> + title="Search in Red" /> <script> - var updateInterval = $update_interval; - var localUser = {{ if $local_user }}$local_user{{ else }}false{{ endif }}; + var updateInterval = {{$update_interval}}; + var localUser = {{if $local_user}}{{$local_user}}{{else}}false{{/if}}; + var zid = {{if $zid}}'{{$zid}}'{{else}}null{{/if}}; </script> |