diff --git a/html/home.html b/html/home.html
index 0ad2833..34ebbe3 100644
--- a/html/home.html
+++ b/html/home.html
@@ -1,4 +1,5 @@
-
+
+
The RHO Vision is many things to maqny people.
- Object capability security
@@ -14,15 +15,14 @@
Open Collective activities
-- operation and governance of rholang networks (mainnet, rhobot.net, etc.)
+- operation and governance of rholang networks (mainnet, rhobot.net, etc.)
- Develop and operate the Rholang Open Source Software
-- a home for standardized rholang components and interoperability
-- Formally the Rchain Community
+- a home for standardized rholang components and interfaces enabling interoperability for interoperability among self sovereign humans and groups. This caninclude Object, Event, Time, Actor, Relation, Collection, Transaction, RemoteName protocols and typing pragma..
- RDEV continuation
-Top Projects
+Active Projects
diff --git a/src/md2html.js b/src/md2html.js
index f1dab95..6439169 100644
--- a/src/md2html.js
+++ b/src/md2html.js
@@ -1,9 +1,12 @@
// usage: node src/md2html.js pages/home.md >html/home.html
let filename = process.argv[2]
fs = require('fs')
+const header = `
+`
data = fs.readFileSync(filename, 'utf8')
+const footer = ""
const markdown = data
// console.log(data);
const gfm = require('cmark-gfm-js');
-let html = gfm.convert(markdown);
+let html = header + gfm.convert(markdown) + footer ;
console.log(html)
diff --git a/web.js b/web.js
index feda502..64c3189 100644
--- a/web.js
+++ b/web.js
@@ -6,7 +6,7 @@ const requestListener = function (req, res) {
const queryObject = url.parse(req.url, true).query;
//console.log(req.url);
page = queryObject.page ? queryObject.page : "home";;
- console.log(page);
+ //console.log(page);
res.writeHead(200, { 'Content-Type': 'text/html' });
fs.readFile('html/'+page+'.html', 'utf8', (err, data) => {
if (err) {