Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mmrath/hugo-bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r--layouts/partials/head.html15
1 files changed, 9 insertions, 6 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 48db8e7..a237fce 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -1,13 +1,16 @@
<!DOCTYPE html>
-{{ "<!--[if lt IE 7]>" | safeHTML }} <html class="no-js lt-ie9 lt-ie8 lt-ie7"> {{ "<![endif]-->" | safeHTML }}
-{{ "<!--[if IE 7]>" | safeHTML }} <html class="no-js lt-ie9 lt-ie8"> {{ "<![endif]-->" | safeHTML }}
-{{ "<!--[if IE 8]>" | safeHTML }} <html class="no-js lt-ie9"> {{ "<![endif]-->" | safeHTML }}
-{{ "<!--[if gt IE 8]><!-->" | safeHTML }} <html class="no-js"> {{ "<!--<![endif]-->" | safeHTML }}
+<html class="no-js">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>{{ .Title }} {{ if ne .Title .Site.Title }} &middot; {{ .Site.Title }}{{ end }}</title>
{{ partial "base/metas" . }}
- {{ partial "base/imports" . }}
+
+
+ <link rel="stylesheet" href="{{ "/assets/css/bootstrap.min.css" | absURL }}">
+ <link rel="stylesheet" href="{{ "/assets/css/font-awesome.min.css" | absURL }}">
+ <link rel="stylesheet" href="{{ "/assets/css/style.css" | absURL }}">
+ <link rel="stylesheet" href="{{ "/assets/css/tomorrow-night.css" | absURL }}">
+ <link href='https://fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css'>
</head>
-<body{{ with .Site.Params.theme }} class="{{ . }}"{{ end }}>
+<body class="bg-faded">
{{ partial "base/header" . }}