Initial commit for html templates

This commit is contained in:
Zachary Elliott 2014-07-08 19:29:49 -04:00
parent 1e55bc33b1
commit af819ae597
3 changed files with 20 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.css
.sass-cache/

0
assets/sass/screen.scss Normal file
View File

18
templates/index.html Normal file
View File

@ -0,0 +1,18 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.min.css" />
<link rel="stylesheet" href="/css/screen.css" />
<script type="application/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- script type="application/javascript" src="/js/main.js"></script-->
<title>ifconfig.io</title>
</head>
<body>
<header></header>
<nav></nav>
<main></main>
<footer></footer>
</body>
</html>