client-ui
Version:
Testing implementation of nodeJs Backend, angular frontend, and hopefully in a way that this can be deployed to s3/cloudfront
35 lines (30 loc) • 1.07 kB
HTML
<html lang="en">
<head>
<title>RocketLoans | 404 Page Not Found</title>
<meta description="RocketLoans and our partner company, Rocket Mortgage, teamed up to provide you with the simplest way to get a personal loan or a mortgage.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="images/favicon.ico" rel="Shortcut Icon" type="image/x-icon">
<!-- pageNotFound:css -->
<!-- endinject -->
</head>
<body>
<div id="navigationBar">
</div>
<div class="container">
<div id="404Content"></div>
</div>
<!-- pageNotFound:js -->
<!-- endinject -->
<script>
$(document).ready( function () {
$('#navigationBar').load("nav-header/nav-header-static.html");
$("#404Content").load("static/404.html");
});
if (config.isProduction()) {
// GOOGLE ANALYTICS
config.initializeGoogleAnalytics("/404");
}
</script>
</body>
</html>