Add page that auto-refreshes every five minutes

For use in Reading School newsroom
This commit is contained in:
Matthew Grove
2019-03-06 09:22:53 +00:00
parent 7ac9ae0a65
commit 207c04d3b2
5 changed files with 56 additions and 4 deletions

18
_site/auto-refresh.html Normal file
View File

@@ -0,0 +1,18 @@
<iframe id="iframe" src="/"></iframe>
<script>
window.setInterval(function() {
document.getElementById('iframe').contentWindow.location.reload();
}, 300000);
</script>
<style>
html, body, iframe {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
border: none;
}
</style>