0
0
zblog/themes/zero/layouts/partials/header.html
Gibheer a7f6509d11 add meta tag for theme color on android chromium
Adding this meta tag changes the color of the tab in the android
chromium browser. Just a nice gimmick.
2016-05-05 21:37:24 +02:00

16 lines
596 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ if eq .URL "/" }}{{ .Site.Title }}{{ else }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="theme-color" content="#3a5f78">
{{ if .RSSlink }}
<link href="{{ .RSSlink }}" rel="alternate" title="RSS 2.0" type="application/rss+xml" />
{{ end }}
<link href="{{ .Site.BaseURL }}/css/style.css" rel="stylesheet" type="text/css"></link>
</head>
<body>
<header>
<h1><a href="{{ .Site.BaseURL }}/">{{ .Site.Title }}</a></h1>
</header>