for(var key in config.templaters){
(function(key,value){
fetch('templater/'+value,{
cache:'force-cache'
}).then(function(response){
return response.text();
}).then(function(response){
config.html[key]=response;
});
})(key,config.templaters[key]);
}