11 lines
283 B
JavaScript
Executable File
11 lines
283 B
JavaScript
Executable File
'use strict';
|
|
require('./main.css');
|
|
// Use the same template for the frontend code
|
|
var template = require('./time.jade');
|
|
|
|
setInterval(function () {
|
|
var div = document.getElementById('main');
|
|
div.innerHTML = template({ time: new Date() });
|
|
div.style.color = 'navy';
|
|
}, 1000);
|