33 lines
		
	
	
		
			867 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			867 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en">
 | |
| <head>
 | |
| 	<meta charset="UTF-8">
 | |
| 	<title>{{ page.title }}</title>
 | |
| 	<link rel="stylesheet" href="/_vendor/open-sans/open-sans-v34.css">
 | |
| 	<link rel="stylesheet" href="/_vendor/katex/katex.min.css">
 | |
| 	<link rel="stylesheet" href="/_assets/colors.css">
 | |
| 	<link rel="stylesheet" href="/_assets/base.css">
 | |
| 	<link rel="stylesheet" href="/_assets/prism.css">
 | |
| </head>
 | |
| <body>
 | |
| 
 | |
| <script src="/_assets/extras.js"></script>
 | |
| <color-scheme-toggle-button></color-scheme-toggle-button>
 | |
| 
 | |
| {{# page.outline_button }}
 | |
| <outline-button content-root="#root"></outline-button>
 | |
| {{/ page.outline_button }}
 | |
| 
 | |
| <div id="root">
 | |
| <main>
 | |
| {{> .content }}
 | |
| </main>
 | |
| 
 | |
| <footer>
 | |
| 	<p class="left">Built with docs2website at <time datetime="{{ build_time.iso }}">{{ build_time.rfc2822 }}</time></p>
 | |
| 	<p class="right">Copyright 2023 James Brumond</p>
 | |
| </footer>
 | |
| </div>
 | |
| 
 | |
| </body>
 | |
| </html> |