forked from gergely/calendar-social
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			544 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			544 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|     <head>
 | |
|         <title>Calendar.Social</title>
 | |
| {% block head %}
 | |
|         <style>
 | |
|          footer {
 | |
|              margin-top: 3em;
 | |
|              font-weight: bold;
 | |
|              border-top: 1px dotted black;
 | |
|              padding-top: 1em;
 | |
|          }
 | |
|         </style>
 | |
| {% endblock %}
 | |
|     </head>
 | |
|     <body>
 | |
|         <header>
 | |
|             <h1>Calendar.social</h1>
 | |
|         </header>
 | |
| {% block content %}{% endblock %}
 | |
|         <footer>
 | |
|             Soon…™
 | |
|         </footer>
 | |
| {% block scripts %}{% endblock %}
 | |
|     </body>
 | |
| </html>
 |