Created
March 15, 2016 02:45
-
-
Save keshavab/7efd202b851cd6080650 to your computer and use it in GitHub Desktop.
html-partial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <meta name="author" content="{{ with .Site.Params.name }}{{ . }}{{ end }}"> | |
| <meta name="description" content="{{ with .Site.Params.description }}{{ . }}{{ end }}"> | |
| {{ .Hugo.Generator }} | |
| <title>{{ .Title }} · {{ .Site.Title }}</title> | |
| <link rel="shortcut icon" href="{{ .Site.BaseURL }}images/favicon.ico"> | |
| <link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css"> | |
| <link rel="stylesheet" href="{{ .Site.BaseURL }}css/highlight.css"> | |
| <link rel="stylesheet" href="{{ .Site.BaseURL }}css/monosocialiconsfont.css"> | |
| {{ if .Site.Params.enableRSS }} | |
| <link href="{{ .Site.RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" /> | |
| {{ end }} | |
| </head> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment