<!doctype html> <html> <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.0"> <meta name="HandheldFriendly" content="True"> <title>{{ .Site.Title }}</title> <link rel="stylesheet" type="text/css" media="screen" href="../css/concise.min.css" /> <link rel="stylesheet" type="text/css" media="screen" href="starter.css" /> </head> <body> <header class="siteHeader container clearfix"> <h1 class="logo">{{ .Site.Title }}</h1> <nav class="nav"> <ul> {{ range .Site.Menus.main }} <li><a href="{{ .URL }}">{{ .Name }}</a></li> {{ end }} </ul> </nav> </header> <main class="siteContent container"> <h2>Concise Starter Template</h2> <h4> This is a starter template for the <a href="http://concisecss.com">Concise CSS framework</a> that can be easily copied and customized for projects. </h4> </main> <footer class="siteFooter container"> <p>Copyright © {{ .Site.Data.meta.currentyear }} Danielle & Matthew Dillon</p> </footer> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../js/concise.min.js"></script> </body> </html>