Roughing in concise css framework
This commit is contained in:
parent
d97572956b
commit
870184f222
10 changed files with 2693 additions and 2 deletions
45
layouts/index.html
Normal file
45
layouts/index.html
Normal file
|
@ -0,0 +1,45 @@
|
|||
<!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>
|
Loading…
Add table
Add a link
Reference in a new issue