Serotonin Storm

source>templates>base.orig.html
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{% load disqus_tags flatblock_tags cache navbar generic_content blog %}

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">

<html lang="en">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
		<title>{% block title %}{{ SITE_NAME }}{% endblock %}</title>
		
		<meta name="keywords" content="{% flatblock 'keywords' 3000 using 'flatblocks/bare.html' %}">
		<meta name="description" content="{% flatblock 'description' 3000 using 'flatblocks/bare.html' %}">
    	<meta name="author" content="" />
	    <meta name="copyright" content="" />

		<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="{{ FEED_SUBSCRIBE_RSS }}" />
		<link rel="stylesheet" href="{{ STATIC_URL }}css/960.css" type="text/css" media="all" charset="utf-8">
		<link rel="stylesheet" href="{{ STATIC_URL }}css/base.css" type="text/css" media="all" charset="utf-8">
		<link rel="stylesheet" href="{{ STATIC_URL }}css/themes/basic.css" type="text/css" media="all" charset="utf-8">
		<link rel="shortcut icon" href="{{ STATIC_URL }}imgs/favicon.ico" type="image/x-icon"/>
		<script type="text/javascript" src="{{ STATIC_URL }}js/jquery-1.3.js"></script>
		<script type="text/javascript" src="{{ STATIC_URL }}js/jquery.cycle.all.min.js"></script>
		<script type="text/javascript">
		
		$(document).ready(function(){
			$('#pics').cycle({
				fx:'fade',
				delay: 7000,
				speed: 700,
				random: 1
			});
		});
		
		
		</script>		
		<!--[if IE 6]>
		<script src="{{ STATIC_URL }}js/DD_belatedPNG_0.0.7a-min.js"></script>
		<script>
		  DD_belatedPNG.fix('#bleeder, .logo');
		</script>
		<![endif]-->
		
		
		{% block extra_head %}{% endblock %}
	</head>

<body id="{% block body_id %}{% endblock %}" class="{% block body_class %}blog{% endblock %}">
<div id="bleeder"></div>

	<div id="body-container" class="clearfix">
    {% block body %}
	{% block content_title %}<h1 class="hide">{{ SITE_NAME }}</h1>{% endblock %}

	<div id="header" class="clearfix">
		<div id="logo">
			<h1><a href="{{ SITE_URL }}" title="{{ SITE_NAME }}">{{ SITE_NAME }}</a></h1>
			<!-- a href="{{ SITE_URL }}" title="Monty Lounge Industries Blog"><img class="logo" src="{{ STATIC_URL }}imgs/logo-blog-color-trans2.png" alt="Monty Lounge Industries"></a -->
		</div>
		<!-- /logo -->
		
		<div id="nav">
			{% navbars %}
			<form action="/search/" method="GET"><input type="text" name="q" value="{{ search_term }}"><input type="submit" class="button" value="Search"></form>
		</div>
		<!-- /nav -->

	</div>
	<!-- /header -->
	
	<div class="container_16">
		<div id="pics">
		{% for pic in PICS %}
		    <img src="{{ STATIC_URL }}/imgs/{{ pic }}"/> 
		{% endfor %}
		</div> 	
		<div class="grid_9 suffix_1">
			<div class="content">
		        {% block content %}{% endblock %}
			</div>
			<!-- /content -->

		</div>
		<!-- /grid_9 -->

		<div id="right-rail" class="grid_6">
			
			<h4>About</h4>
			{% flatblock "about" 3600 "flatblocks/bare.html" %}

			<h4>Subscribe</h4>
			<ul>
				<li><a href="http://twitter.com/" title="Follow me on Twitter">Twitter</a></li>
				<li><a href="http://" title"Subscribe via RSS">RSS</a></li>
				<li><a href="http://" title="Subscribe via Email">Email</a></li>
			</ul>
			
			<h4>Elsewhere</h4>
			<ul>
				{% cache 3600 "rail-elsewhere" %}
				{% for item in ELSEWHERE %}
				<li><a href="{{ item.url }}">{{ item.name }}</a></li>
				{% endfor %}
				{% endcache %}
			</ul>
			
			<h4>Categories</h4>
			<ul>
			{% cache 3600 "rail-categories" %}
				{% get_blog_categories as category_list %}
				{% for category in category_list %}
				<li><a href="{% url basic.blog.views.category_detail category.slug %}" title="{{ category.title }}">{{ category.title }}</a></li>
				{% endfor %}
			{% endcache %}
			</ul>

			{% cache 3600 "rail-recent-posts" %}
			{% get_latest_posts 10 as post_list %}
			<h4>Recent Posts</h4>
			<ul class="recent-posts">
			{% for post in post_list %}
			<li><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></li>
			{% endfor %}
			{% endcache %}
			</ul>

		</div>
		<!-- /grid_6 -->
	</div>
	<!-- /container_16 -->
	
	{% endblock %}
	</div>
	<!-- /body-container -->
		
	<div id="footer">
		<p>
			{% flatblock "footer" 3600 "flatblocks/bare.html" %}
		</p>
	</div>
	<!-- /footer -->
	
	<!--<script type="text/javascript">-->
	<!--//<![CDATA[-->
	<!--(function() {-->
	<!--		var links = document.getElementsByTagName('a');-->
	<!--		var query = '?';-->
	<!--		for(var i = 0; i < links.length; i++) {-->
	<!--			if(links[i].href.indexOf('#disqus_thread') >= 0) {-->
	<!--				query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';-->
	<!--			}-->
	<!--		}-->
	<!--		document.write('<script charset="utf-8" type="text/javascript" src="http://disqus.com/forums/montyloungeblog/get_num_replies.js' + query + '"></' + 'script>');-->
	<!--	})();-->
	<!--//]]>-->
	<!--</script>-->

</body>
</html>