Similarly load CSS via Django staticfiles app
This commit is contained in:
		
							parent
							
								
									caa0ff7b86
								
							
						
					
					
						commit
						18de3adfce
					
				
					 9 changed files with 15 additions and 12 deletions
				
			
		|  | @ -1,9 +1,10 @@ | |||
| {% extends "base_conservancy.html" %} | ||||
| {% load cache %} | ||||
| {% load humanize %} | ||||
| {% load static %} | ||||
| {% block category %}WhatWeDo{% endblock %} | ||||
| {% block head %} | ||||
| <link href="/css/forms.css" rel="stylesheet" type="text/css"/> | ||||
| <link href="{% static 'css/forms.css' %}" rel="stylesheet" type="text/css"/> | ||||
| 
 | ||||
| {% endblock %} | ||||
| 
 | ||||
|  |  | |||
|  | @ -1,9 +1,10 @@ | |||
| {% extends "base_conservancy.html" %} | ||||
| {% load static %} | ||||
| {% block subtitle %}Attend Supporter Night - {% endblock %} | ||||
| {% block category %}supporter{% endblock %} | ||||
| 
 | ||||
| {% block head %} | ||||
| <link href="/css/forms.css" rel="stylesheet" type="text/css"/> | ||||
| <link href="{% static 'css/forms.css' %}" rel="stylesheet" type="text/css"/> | ||||
| {% endblock %} | ||||
| 
 | ||||
| {% block content %} | ||||
|  |  | |||
|  | @ -6,7 +6,7 @@ | |||
| 
 | ||||
| {% block head %} | ||||
| <script type="text/javascript" src="{% static 'js/supporter-page.js' %}"></script> | ||||
| <link href="/css/forms.css" rel="stylesheet" type="text/css"/> | ||||
| <link href="{% static 'css/forms.css' %}" rel="stylesheet" type="text/css"/> | ||||
| {% endblock %} | ||||
| 
 | ||||
| {% block content %} | ||||
|  |  | |||
|  | @ -2,8 +2,9 @@ | |||
| {% block category %}WhatWeDo{% endblock %} | ||||
| {% load cache %} | ||||
| {% load humanize %} | ||||
| {% load static %} | ||||
| {% block head %} | ||||
| <link href="/css/forms.css" rel="stylesheet" type="text/css"/> | ||||
| <link href="{% static 'css/forms.css' %}" rel="stylesheet" type="text/css"/> | ||||
| 
 | ||||
| {% endblock %} | ||||
| 
 | ||||
|  |  | |||
|  | @ -12,9 +12,9 @@ | |||
|     <meta name="description" content="The Software Freedom Conservancy provides a non-profit home and services to Free, Libre and Open Source Software (FLOSS) projects." /> | ||||
|     <meta name="keywords" content="software, freedom, conservancy, open source, gnu, GNU, Open Source, Free and Open Source, Free and Open Source Software, FLOSS, FOSS, protect, protection, help, policy, linux, non-profit" /> | ||||
|     <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> | ||||
|     <link rel="stylesheet" type="text/css" href="/css/tachyons.css"/> | ||||
|     <link rel="stylesheet" type="text/css" media="screen" href="/css/conservancy.css" /> | ||||
|     <link rel="stylesheet" type="text/css" media="(min-width: 67em)" href="/css/conservancy-bigscreen.css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="{% static 'css/tachyons.css' %}"/> | ||||
|     <link rel="stylesheet" type="text/css" media="screen" href="{% static 'css/conservancy.css' %}" /> | ||||
|     <link rel="stylesheet" type="text/css" media="(min-width: 67em)" href="{% static 'css/conservancy-bigscreen.css' %}" /> | ||||
|     <script type="text/javascript" src="{% static 'js/jquery-1.7.2.js' %}"></script> | ||||
|     <script type="text/javascript" src="{% static 'js/conservancy.js' %}"></script> | ||||
|     {% block head %}{% endblock %} | ||||
|  |  | |||
|  | @ -1,9 +1,10 @@ | |||
| {% extends "base_conservancy.html" %} | ||||
| {% load cache %} | ||||
| {% load humanize %} | ||||
| {% load static %} | ||||
| {% block category %}News{% endblock %} | ||||
| {% block head %} | ||||
| <link href="/css/forms.css" rel="stylesheet" type="text/css"/> | ||||
| <link href="{% static 'css/forms.css' %}" rel="stylesheet" type="text/css"/> | ||||
| 
 | ||||
| {% endblock %} | ||||
| 
 | ||||
|  |  | |||
|  | @ -1,9 +1,10 @@ | |||
| {% extends "base_conservancy.html" %} | ||||
| {% load cache %} | ||||
| {% load humanize %} | ||||
| {% load static %} | ||||
| {% block category %}Vizio{% endblock %} | ||||
| {% block head %} | ||||
| <link href="/css/forms.css" rel="stylesheet" type="text/css"/> | ||||
| <link href="{% static 'css/forms.css' %}" rel="stylesheet" type="text/css"/> | ||||
| 
 | ||||
| {% endblock %} | ||||
| 
 | ||||
|  |  | |||
|  | @ -5,7 +5,7 @@ | |||
| 
 | ||||
| {% block head %} | ||||
| <script type="text/javascript" src="{% static 'js/supporter-page.js' %}"></script> | ||||
| <link href="/css/forms.css" rel="stylesheet" type="text/css"/> | ||||
| <link href="{% static 'css/forms.css' %}" rel="stylesheet" type="text/css"/> | ||||
| {% include "opengraph_partial.html" with url="/sustainer/" title="Support Conservancy!" description="Software freedom is critical to many of today’s most pressing social issues, but it’s only effective when FOSS is for everyone. Support Conservancy today to help make that happen!" %} | ||||
| {% include "opengraph_urllist_partial.html" with property='image' urls='' fallback='/img/conservancy-logo.png' %} | ||||
| {% endblock %} | ||||
|  |  | |||
|  | @ -29,9 +29,7 @@ admin.autodiscover() | |||
| 
 | ||||
| urlpatterns = [ | ||||
|     # Uncomment these 3 lines when testing locally to get static content | ||||
|     url(r'^css', static_views.index), | ||||
|     url(r'^img', static_views.index), | ||||
|     url(r'^js', static_views.index), | ||||
|     url(r'^$', frontpage.view), | ||||
|     url(r'^sponsors$', frontpage.view), | ||||
|     url(r'^sponsors/$', sponsors.view), | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue