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

github.com/jweslley/hugo-conference.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..ea58093
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,51 @@
+<!doctype html>
+<html itemscope itemtype="http://schema.org/Event">
+<head>
+ <title itemprop="name">{{ .Site.Params.Name }}</title>
+
+ <meta charset="utf-8">
+ <meta name="author" content="{{ .Site.Params.Name }}" />
+ <meta name="description" content="{{ .Site.Params.Description }}">
+ <meta name="viewport" content="width=device-width">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+
+ {{ .Hugo.Generator }}
+ {{ template "_internal/opengraph.html" . }}
+ {{ template "_internal/twitter_cards.html" . }}
+
+ <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
+ <link rel="apple-touch-icon" href="/img/apple-touch-icon.png">
+
+ <link rel="stylesheet" type="text/css" href="/css/main.css">
+
+</head>
+<body>
+ <div class="global">
+
+ {{ partial "nav.html" . }}
+ {{ partial "header.html" .Site.Params }}
+
+ <div class="content" id="content">
+ <div class="wrapper">
+ {{ range $section := .Site.Params.Sections }}
+ <section class="{{ $section }}" id="{{ $section }}">
+ {{ partial $section $.Site.Params }}
+ </section>
+ {{ end }}
+
+ <footer class="footer">
+ <p>Made with ♥ by <a href="https://github.com/braziljs/conf-boilerplate" target="_blank">Conf Boilerplate</a> :)</p>
+ </footer>
+ </div>
+ </div>
+ </div>
+
+ <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
+ <script>window.jQuery || document.write('<script src="/js/jquery.js"><\/script>')</script>
+ {{ if isset .Site.Params "address" }}
+ <script src="http://maps.google.com/maps/api/js?sensor=false"></script>
+ <script src="/js/main.js"></script>
+ {{ end }}
+ {{ template "_internal/google_analytics_async.html" . }}
+</body>
+</html>