function getContent(urls) {
load();
var url = new URL(urls);
var pag = url.pathname + url.search + url.hash;
var pages = pag.replace('#','');
if (pages === '/') {
page('/app/page/index.html');
} else {
page('/app/page' + pages + '.html');
//history.pushState(null, null, pages);
window.location.hash = pages;
}
}
if( window.location.hash != pages) window.location.hash = pages;