template.html (875B)
1 <!doctype html> 2 <html lang=en> 3 4 <head> 5 <title>Friedel's Initialization and Service Supervision</title> 6 <meta charset=utf-8 /> 7 <meta name=viewport content='width=device-width,initial-scale=1' /> 8 <link rel=stylesheet href=style.css /> 9 <script type=text/javascript> 10 function toggle_dark() { 11 var githubImage = document.getElementById('github'); 12 var toggleButton = document.getElementById('toggle_dark'); 13 if (document.body.classList.toggle('dark')) { 14 // is dark 15 githubImage.src = 'github-mark-white.svg'; 16 toggleButton.innerHTML = ' turn the lights on '; 17 } else { 18 // is light 19 githubImage.src = 'github-mark.svg'; 20 toggleButton.innerHTML = ' turn the lights off '; 21 } 22 } 23 </script> 24 </head> 25 26 <body> 27 <div id=wrapper>%%%</div> 28 </body> 29 30 </html>