Skip to content

Instantly share code, notes, and snippets.

@cduruk
Created May 27, 2011 21:47
Show Gist options
  • Save cduruk/996253 to your computer and use it in GitHub Desktop.
Save cduruk/996253 to your computer and use it in GitHub Desktop.
Tigris HTML
<html>
<head>
<meta charset="utf-8">
<title>Tigris</title>
<script src="/js/lib/prototype.s2.js" type="text/javascript" charset="utf-8"></script>
<script src="/js/application.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="/css/lib/type.css">
<link rel="stylesheet" href="/css/application.css">
</head>
<body>
<h1>Tigris</h1>
<div id="filter-container">
<form id="filters" name="filters">
</form>
</div>
<div id="content-container">
<ul id="items">
</ul>
</div>
<!-- SEO IS MY MIDDLE NAME. -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-12212482-4']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment