mirror of
https://github.com/softinio/softinio.com.git
synced 2025-09-05 11:16:41 -07:00
Initial Version
This commit is contained in:
commit
76ee2dd12c
91 changed files with 7690 additions and 0 deletions
37
layouts/partials/head.html
Normal file
37
layouts/partials/head.html
Normal file
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
|
||||
<head>
|
||||
<link href="http://gmpg.org/xfn/11" rel="profile">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
|
||||
<!-- Enable responsiveness on mobile devices-->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
||||
|
||||
<title>{{ .Title }} · {{ .Site.Author.name }}</title>
|
||||
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="{{ "/css/poole.css" | absURL }}">
|
||||
<link rel="stylesheet" href="{{ "/css/hyde.css" | absURL }}">
|
||||
<link rel="stylesheet" href="{{ "/css/poole-overrides.css" | absURL }}">
|
||||
<link rel="stylesheet" href="{{ "/css/hyde-overrides.css" | absURL }}">
|
||||
<link rel="stylesheet" href="{{ "/css/hyde-x.css" | absURL }}">
|
||||
<link rel="stylesheet" href="{{ "/css/style.css" | absURL }}">
|
||||
{{ if isset .Site.Params "highlight" }}<link rel="stylesheet" href="{{ "/css/highlight/" | absURL }}{{ .Site.Params.highlight }}.css">{{ end }}
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
|
||||
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
||||
|
||||
<!-- Icons -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ "/touch-icon-144-precomposed.png" | absURL }}">
|
||||
<link href="{{ "/favicon.png" | absURL }}" rel="icon">
|
||||
|
||||
<!-- RSS -->
|
||||
{{ $siteTitle := .Site.Title }}
|
||||
{{ $authorName := .Site.Author.name }}
|
||||
{{ with .RSSLink }}<link href="{{ . }}" rel="alternate" type="application/rss+xml" title="{{ $siteTitle }} · {{ $authorName }}" />{{ end }}
|
||||
|
||||
<meta name="description" content="{{ if ne .Description "" }}{{ .Description }}{{ else }}{{ .Site.Params.defaultDescription }}{{ end }}">
|
||||
<meta name="keywords" content="{{ range $index, $element := .Keywords }}{{ if gt $index 0 }},{{ end }}{{ . }}{{ else }}{{ .Site.Params.defaultKeywords }}{{ end }}">
|
||||
{{ with .Site.Params.googleAuthorship }}<link rel="author" href="http://plus.google.com/{{ . }}">{{ end }}
|
||||
</head>
|
||||
<body{{ with .Site.Params.theme }} class="{{ . }}"{{ end }}>
|
||||
{{ partial "sidebar.html" . }}
|
Loading…
Add table
Add a link
Reference in a new issue