minor changes again
authorOscar J. Rodriguez B <josuer08@gmail.com>
Fri, 6 Mar 2020 06:20:20 +0000 (01:20 -0500)
committerOscar J. Rodriguez B <josuer08@gmail.com>
Fri, 6 Mar 2020 06:20:20 +0000 (01:20 -0500)
partials/head.ejs
partials/header.ejs
routes/index.js

index 91b80ed8d6382881e81870ed9416dea6f91601bb..1a115613f7332fbe294dcba6704733b6822d2f1e 100644 (file)
@@ -1,7 +1,6 @@
 <!-- views/partials/head.ejs -->
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta charset="UTF-8">
-<title>VSoRC</title>
 <!-- CSS (load bootstrap from a CDN) -->
 <!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> -->
 <title>Oscar J Rodriguez B</title>
index ad5fc2d3274cb3414f7d5810ae5bb841a2997be6..5e48fa03bd47dfed5d1810eed7de44ad107e32f0 100644 (file)
@@ -18,6 +18,6 @@
   </ul>
 </div>
 <form class="form-inline">
-  <button class="btn-outline-success" type="button" onclick="location.href = '/';">VSoRC</button>
+  <button class="btn" type="button" onclick="location.href = '/';">Home</button>
 </form>
 </nav>
index ecca96a56b309a315ddf6399155fd2f953031d3b..395c0ec1f1e08c29524ab1ee20572ab0ee85d554 100644 (file)
@@ -3,7 +3,7 @@ var router = express.Router();
 
 /* GET home page. */
 router.get('/', function(req, res, next) {
-  res.render('index', { title: 'Express' });
+  res.render('index', { title: 'Oscar J Rodriguez B' });
 });
 
 module.exports = router;