-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
84 lines (66 loc) · 2.93 KB
/
single.php
File metadata and controls
84 lines (66 loc) · 2.93 KB
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
<html>
<!-- begin the page and load styles/scripts common to all pages -->
<!-- leave the HEAD tag open so each page can use a different title. HEAD tag is closed in header2.html -->
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<script src="<?php bloginfo('template_directory'); ?>/rdcc.js" type="text/javascript"></script>
<?php wp_head(); ?>
<title><?php bloginfo('name'); ?> <?php wp_title(); ?></title>
<!-- end the headers and start the page -->
</head>
<body>
<!-- make the various borders -->
<div style="margin-left:auto;margin-right:auto;width:830px;height:100%;position:relative;top:-8px;">
<a href="index.html"><img src="<?php bloginfo('template_directory'); ?>/images/success.png" style="position:absolute;right:0px;top:65px;border:none;"></a>
<div style="position:relative;top:100px;background:#d1c7ac;padding-top:11px;padding-bottom:10px;">
<div style="position:relative;left:10px;background:#f0f2e7;width:810px;">
<!-- links across the top of the header -->
<div id="header" style="height:244px;;position:relative;">
<?php get_header(); ?>
</div>
<!-- use a table to divide the middle section into sidebar and main content areas -->
<table border="0" cellspacing="5" cellpadding="5">
<tr><td>
<div id="sidebar" style="width:172px;">
<?php get_sidebar(); ?>
</div>
</td><td>
<!-- MAIN CONTENT BODY BEGINS -->
<div id="main" style="position:relative;left:10px;">
<?php the_post(); ?>
<h1>
<?php the_title(); ?>
</h1>
<?php the_content(); ?>
</div>
<!-- MAIN CONTENT BODY ENDS -->
</td></tr>
</table>
<div id="footer" style="position:relative;padding-top:10px;">
<?php get_footer(); ?>
</div>
</div>
</div>
<!-- main logo. put this last so its z-index is highest (ie, so it'll be on top of everything else) -->
<!-- always use border=none on image links -->
<a href="/"><img src="<?php bloginfo('template_directory'); ?>/images/logoRDCC.png" style="position:absolute;top:0px;left:10px;border:none;"></a>
<br><br>
<br><br>
<br><br>
</div>
<!-- GOOGLE ANALYTICS -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-9591150-1");
pageTracker._trackPageview();
} catch(err) {}</script>
</body>
</html>