 6121ce79cc
			
		
	
	
		6121ce79cc
		
	
	
	
	
		
			
			Nearly there. Much rubbish / cruft ripped out of site_base.html and content_page.html. Had to modify cms_pages/models.py to accommodate a "simple" layout option in the homepage editor. Still some stuff to do. Styling not quite there yet, but want to checkpoint this.
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			789 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			789 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "site_base.html" %}
 | |
| {% load staticfiles %}
 | |
| {% block extra_style %}{% endblock %}
 | |
| {% block body_base %}
 | |
|     <div style="height: 100px;" />
 | |
|     <main role="main">
 | |
|     {% include "_messages.html" %}
 | |
|     {% block body %}
 | |
|       {% block content %}
 | |
|       {% endblock %}
 | |
|     {% endblock %}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block scripts %}
 | |
| 
 | |
| <script src="{% static 'pyconau2017/js/app.js' %}" type="text/javascript"></script>
 | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
 | |
| <script src="{% static 'pyconau2017/js/load_editors.js' %}" type="text/javascript"></script>
 | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/ace/1.2.3/ace.js"></script>
 | |
| <script src="{{ STATIC_URL }}js/jquery.formset.js"></script>
 | |
| 
 | |
|   {% block scripts_extra %}
 | |
|   {% endblock %}
 | |
| 
 | |
| {% endblock %}
 |