2015-02-02 09:54:20 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="ja">
|
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 }} · {{ end }} {{ .Site.Title }}" />
|
|
|
|
<meta property="og:site_name" content="{{ .Site.Title }}" />
|
2015-02-02 09:54:20 +00:00
|
|
|
<meta property="og:url" content="{{ .Permalink }}" />
|
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 }}" />
|
|
|
|
{{ 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>
|
2015-02-03 14:53:05 +00:00
|
|
|
{{ if ne .Url "/" }} {{ .Title }} · {{ end }} {{ .Site.Title }}
|
2015-02-03 13:42:27 +00:00
|
|
|
</title>
|
2015-02-02 09:54:20 +00:00
|
|
|
|
2015-02-25 07:04:29 +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" />
|
2015-02-02 09:54:20 +00:00
|
|
|
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400" type="text/css">
|
2015-02-25 07:04:29 +00:00
|
|
|
<link rel="shortcut icon" href="{{ .Site.BaseUrl }}images/favicon.ico" />
|
|
|
|
<link rel="apple-touch-icon" href="{{ .Site.BaseUrl }}images/apple-touch-icon.png" />
|
2015-02-02 09:54:20 +00:00
|
|
|
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header class="global-header">
|
|
|
|
<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" . }}
|
2015-02-09 09:50:01 +00:00
|
|
|
{{ if ne .Url "/" }}
|
|
|
|
<a href="{{ .Site.BaseUrl }}" class="btn-header btn-back hidden-xs">
|
|
|
|
<i class="fa fa-angle-left"></i>
|
|
|
|
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-02-09 06:51:06 +00:00
|
|
|
<i class="fa fa-rss"></i>
|
2015-02-09 09:52:09 +00:00
|
|
|
Subscribe
|
2015-02-09 06:51:06 +00:00
|
|
|
</a>
|
|
|
|
{{ end }}
|
2015-02-02 09:54:20 +00:00
|
|
|
</section>
|
|
|
|
</header>
|
|
|
|
<main class="container">
|