Update about bio (#55)

* Update bio and remove CV link for privacy issues

* Update bio and remove CV link for privacy issues

* Format and fix linting issue

* Change bio
This commit is contained in:
E
2024-04-29 14:58:42 +01:00
committed by GitHub
parent 8449b30401
commit 7f2c5975da
5 changed files with 48 additions and 50 deletions

View File

@@ -1,5 +1,5 @@
var express = require('express');
const axios = require('axios');
var express = require("express");
const axios = require("axios");
var router = express.Router();
/* GET home page. */
@@ -30,7 +30,13 @@ router.get('/', function (req, res, _next) {
})
)
.catch((error) => {
console.log(error);
var base = {
title: 'About',
description: 'Who??? What??? AAAAaaa, about me.',
};
var out = Object.assign(base);
console.log('error', error);
res.render('about', out);
});
});