Skip to content

Commit f8526ad

Browse files
committed
Adding in a generic template for use with later labs, eventually to be obsoleted by EE
1 parent 5ecc235 commit f8526ad

File tree

3 files changed

+64
-0
lines changed

3 files changed

+64
-0
lines changed

template/index.php

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?
2+
/*
3+
* <NAME HERE>
4+
* Copyright (c) 2009 Brian Arnold
5+
* Software licensed under MIT license, see http://www.randomthink.net/lab/LICENSE
6+
*/
7+
?><!DOCTYPE html>
8+
<html>
9+
<head>
10+
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
11+
<title>#NAMEHERE# | RandomThink Labs</title>
12+
<link type="text/css" rel="stylesheet" href="../styles/reset.css" />
13+
<link type="text/css" rel="stylesheet" href="../styles/lab.css" />
14+
<link type="text/css" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/redmond/jquery-ui.css" />
15+
<link type="text/css" rel="stylesheet" href="template.css" />
16+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
17+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7/jquery-ui.min.js"></script>
18+
<!--[if lte IE 8]>
19+
<script src="../js/html5.js" type="text/javascript"></script>
20+
<![endif]-->
21+
</head>
22+
<body>
23+
<header>
24+
<h1>#NAMEHERE#</h1>
25+
</header>
26+
<section id="content">
27+
</section> <!-- #content -->
28+
<footer>
29+
<p>#NAMEHERE# by <a href="http://www.randomthink.net/">Brian Arnold</a>, MIT licensed so snag away</p>
30+
</footer>
31+
<script type="text/javascript" src="template.js"></script>
32+
<!-- Analytics -->
33+
<script type="text/javascript">
34+
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
35+
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
36+
</script>
37+
<script type="text/javascript">
38+
try {
39+
var pageTracker = _gat._getTracker("UA-279164-1");
40+
pageTracker._trackPageview();
41+
} catch(err) {}</script>
42+
</body>
43+
</html>

template/template.css

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
* <NAME HERE>
3+
* Copyright (c) 2009 Brian Arnold
4+
* Software licensed under MIT license, see http://www.randomthink.net/lab/LICENSE
5+
*/
6+
7+
body {
8+
}

template/template.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
* <NAME HERE>
3+
* Copyright (c) 2009 Brian Arnold
4+
* Software licensed under MIT license, see http://www.randomthink.net/lab/LICENSE
5+
*/
6+
7+
// !===== VARIABLES =====
8+
9+
// !===== FUNCTIONS =====
10+
11+
// !===== DOM READY =====
12+
$(document).ready(function(){
13+
}); // $(document).ready(...)

0 commit comments

Comments
 (0)