Created
September 7, 2012 15:50
-
-
Save robrocker7/3667338 to your computer and use it in GitHub Desktop.
Example of index.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends "base.html" %} | |
{% load content_filters content_tags sekizai_tags testimonial_tags %} | |
{% block css %} | |
<link rel="stylesheet" href="{{ STATIC_URL }}css/home.css"> | |
<!-- Google Analytics Content Experiment code --> | |
<script>function utmx_section(){}function utmx(){}(function(){var | |
k='#######',d=document,l=d.location,c=d.cookie; | |
if(l.search.indexOf('utm_expid='+k)>0)return; | |
function f(n){if(c){var i=c.indexOf(n+'=');if(i>-1){var j=c. | |
indexOf(';',i);return escape(c.substring(i+n.length+1,j<0?c. | |
length:j))}}}var x=f('__utmx'),xx=f('__utmxx'),h=l.hash;d.write( | |
'<sc'+'ript src="'+'http'+(l.protocol=='https:'?'s://ssl': | |
'://www')+'.google-analytics.com/ga_exp.js?'+'utmxkey='+k+ | |
'&utmx='+(x?x:'')+'&utmxx='+(xx?xx:'')+'&utmxtime='+new Date(). | |
valueOf()+(h?'&utmxhash='+escape(h.substr(1)):'')+ | |
'" type="text/javascript" charset="utf-8"><\/sc'+'ript>')})(); | |
</script><script>utmx('url','A/B');</script> | |
<!-- End of Google Analytics Content Experiment code --> | |
{% endblock %} | |
{% block page_title %}Amazing Title Tag that SE's Love!{% endblock %} | |
{% block page_keywords %}{% endblock %} | |
{% block page_description %}{% endblock %} | |
{% block subnav %} | |
{% endblock %} | |
{% block content %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment