fcc-boilerplate-mongomongoose/views/index.html
Shaun Hamilton 0a89dc5dbb
feat: remove instructions and hyperdev (#31)
* feat: remove instructions and hyperdev

* fix: remove mongoose, change declaration, add dotenv

* remove header and footer
2020-11-06 13:38:27 -08:00

35 lines
974 B
HTML

<!-- This is a static file -->
<!-- served from your routes in server.js -->
<!-- You might want to try something fancier: -->
<!-- html/nunjucks docs: http://mozilla.github.io/nunjucks/ -->
<!-- jade: http://jade-lang.com/ -->
<!-- haml: http://haml.info/tutorial.html -->
<!-- hbs(handlebars): http://handlebarsjs.com/expressions.html -->
<!DOCTYPE html>
<html>
<head>
<title>MongoDB & Mongoose | freeCodeCamp.org</title>
<link
rel="shortcut icon"
href="https://cdn.freecodecamp.org/universal/favicons/favicon-32x32.png"
type="image/x-icon"
/>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
background-color: #ddd;
color: #333;
font-family: sans-serif;
text-align: center;
}
</style>
</head>
<body>
<h1>MongoDB & Mongoose</h1>
</body>
</html>