* Adds basic wagtail app to the website * Renames lca_website to cms_pages for clarity; re-instates pinax-boxes until we remove them from the templates * OOPS * Just Enough Wagtail * Removes the template view homepage from urls.py * OOPS * Makes the home page use a stream field * Removes an irrelevant migration that I accidentally introduced.
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			238 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			238 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "site_base.html" %}
 | 
						|
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
{% load wagtailcore_tags %}
 | 
						|
 | 
						|
{% block head_title %}{% trans "Welcome" %}{% endblock %}
 | 
						|
 | 
						|
{% block body_class %}home{% endblock %}
 | 
						|
 | 
						|
{% block body %}
 | 
						|
  {{ page.body|richtext }}
 | 
						|
{% endblock %}
 |