site-manual-notifier/content/control.md

22 lines
624 B
Markdown
Raw Normal View History

2020-07-03 06:20:15 +00:00
---
title: Control Panel
2020-07-03 06:49:20 +00:00
description: This is a page that controls which texts will scroll
---
<script>
function addJS(name) {
var fileref=document.createElement('script');
fileref.setAttribute('type','text/javascript');
fileref.setAttribute('src', name);
document.head.appendChild(fileref);
}
function addCSS(name) {
var fileref=document.createElement('link');
fileref.setAttribute('rel', 'stylesheet');
fileref.setAttribute('type', 'text/css');
fileref.setAttribute('href', filename);
document.head.appendChild(fileref);
}
addCSS('/css/control.css');
addJS('/js/control.js');
</script>