mirror of
				https://github.com/fooflington/selfdefined.git
				synced 2025-10-31 06:08:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			520 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			520 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <title>A quick app</title>
 | |
| 
 | |
|     <style>
 | |
|       body {
 | |
|         background-color: #ccffcc;
 | |
|       }
 | |
| 
 | |
|       .footer {
 | |
|         margin-top: 5em;
 | |
|         font-size: .75em;
 | |
|       }
 | |
|     </style>
 | |
| 
 | |
|     <script src="/js/nunjucks.js"></script>
 | |
|     <script src="/js/templates.js"></script>
 | |
|     <script src="/js/app.js"></script>
 | |
|   </head>
 | |
|   <body>
 | |
|     {% block content %}{% endblock %}
 | |
| 
 | |
|     <div class="footer">
 | |
|       {% block footer %}(c) James Long 2012{% endblock %}
 | |
|     </div>
 | |
|   </body>
 | |
| </html>
 | 
