mirror of
				https://github.com/fooflington/selfdefined.git
				synced 2025-10-30 21:58:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			531 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			531 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {% extends 'layouts/base.njk' %}
 | |
| {% set pageType = 'Page' %}
 | |
| 
 | |
| {% block content %}
 | |
|   <div class="small-left-grid">
 | |
|     <div id="title">
 | |
|       <a href="/">Self-Defined</a>
 | |
|       <p>A modern dictionary about us.<br>We define our words, but they don't define us.</p>
 | |
|     </div>
 | |
|     <main class="page">
 | |
|       {%- if parent -%}
 | |
|         <div>
 | |
|           <a href={{ parent.href }}>{{ parent.title }}</a>
 | |
|         </div>
 | |
|       {% endif %}
 | |
|       <h1 class="title__thicc" >{{ title }}</h1>
 | |
|       {{ content | safe }}
 | |
|     </main>
 | |
| {% endblock %}
 | 
