planblog/layouts/partials/header.html

68 lines
2.8 KiB
HTML
Raw Normal View History

2015-02-02 09:54:20 +00:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
2015-02-03 14:53:05 +00:00
<head prefix="og: http://ogp.me/ns#">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
<meta property="og:title" content="{{ if ne .URL "/" }} {{ .Title }} &middot; {{ end }} {{ .Site.Title }}" />
{{ with .Site.Params.themecolor }}
<meta name="theme-color" content="{{ . }}" />
2015-07-11 07:26:14 +00:00
aria-hidden="true" {{ end }}
2015-02-03 14:53:05 +00:00
<meta property="og:site_name" content="{{ .Site.Title }}" />
2015-02-02 09:54:20 +00:00
<meta property="og:url" content="{{ .Permalink }}" />
2015-04-02 13:00:47 +00:00
{{ with .Params.images }}{{ range first 5 . }}
<meta property="og:image" content="{{ . }}" />
{{ end }}{{ end }}
2015-02-03 14:53:05 +00:00
{{ if .IsPage }}
<meta property="og:type" content="article" />
{{ with .Site.Params.facebook }}
<meta property="og:article:author" content="https://facebook.com/{{ . }}" />
{{ end }}
<meta property="og:article:published_time" content="{{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHTML }}" />
2015-02-03 14:53:05 +00:00
{{ range .Params.tags }}
<meta property="og:article:tag" content="{{ . }}" />
{{ end }}
{{ else }}
<meta property="og:type" content="website" />
{{ end }}
2015-02-02 09:54:20 +00:00
2015-02-03 13:42:27 +00:00
<title>
{{ if ne .URL "/" }} {{ .Title }} &middot; {{ end }} {{ .Site.Title }}
2015-02-03 13:42:27 +00:00
</title>
2015-02-02 09:54:20 +00:00
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/bootstrap.min.css" />
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/main.css" />
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/font-awesome.min.css" />
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/github.css" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400" type="text/css">
<link rel="shortcut icon" href="{{ .Site.BaseURL }}images/favicon.ico" />
<link rel="apple-touch-icon" href="{{ .Site.BaseURL }}images/apple-touch-icon.png" />
{{ if eq .URL "/" }}
2015-02-02 09:54:20 +00:00
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
2015-04-02 13:09:56 +00:00
{{ end }}
2015-02-02 09:54:20 +00:00
</head>
<body>
<header class="global-header" style="background-image:url({{ if isset .Params "image" }}{{ .Params.image }} {{ else }} /images/bg.jpg {{ end }})">
2015-02-02 09:54:20 +00:00
<section class="header-text">
<h1><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h1>
2015-02-04 17:33:31 +00:00
{{ with .Site.Params.subtitle }}
2015-02-02 09:54:20 +00:00
<div class="tag-line">
2015-02-04 17:33:31 +00:00
{{ . }}
2015-02-02 09:54:20 +00:00
</div>
{{ end }}
{{ partial "link.html" . }}
{{ if ne .URL "/" }}
<a href="{{ .Site.BaseURL }}" class="btn-header btn-back hidden-xs">
2015-07-11 07:26:14 +00:00
<i class="fa fa-angle-left" aria-hidden="true"></i>
2015-02-09 09:50:01 +00:00
&nbsp;Home
</a>
{{ end }}
2015-02-09 06:51:06 +00:00
{{ with .RSSLink }}
2015-02-09 09:50:01 +00:00
<a href="{{ . }}" class="btn-header btn-subscribe hidden-xs">
2015-07-11 07:26:14 +00:00
<i class="fa fa-rss" aria-hidden="true"></i>
2015-02-09 09:52:09 +00:00
&nbsp;Subscribe
2015-02-09 06:51:06 +00:00
</a>
{{ end }}
2015-02-02 09:54:20 +00:00
</section>
</header>
<main class="container">