Add initial HTML5 markup, meta, favicon, font, minified global.css and production.js

This commit is contained in:
Andrew Abogado 2015-01-19 17:43:59 +08:00
parent 2423be0653
commit 0c1009da45
3 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,3 @@
body {
font-family: Lato, "Helvetica Neue", "Lucida Grande", Arial, "Liberation Sans", Freesans, sans-serif;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>Pet Clinic Boilerplate</title>
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Pet Clinic Boilerplate">
<meta name="keywords" content="petclinic, boilerplate, bootstrap, sass, grunt, node">
<meta name="author" content="Andrew Abogado">
<link href="/images/favicon.ico" rel="icon" type="image/ico">
<link rel="stylesheet" href="css/build/minified/global.css">
<link href='//fonts.googleapis.com/css?family=Lato:100,300,400,700,100italic,300italic,400italic' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- header -->
<!-- yield / body -->
<!-- footer -->
<script src="js/build/production.min.js"></script>
</body>
</html>