Skip to content
Snippets Groups Projects
Commit 872b293b authored by root's avatar root Committed by lechuck
Browse files

Add theme rusty-grunge

parent 906fd573
No related branches found
No related tags found
No related merge requests found
Showing
with 211 additions and 0 deletions
<?php get_header() ?>
<div id="main" class="clearfix">
<div id="content">
<div class="inner">
<h1>Error 404: Page Not Found</h1>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
</div>
</div>
<?php get_sidebar() ?>
</div>
<?php get_footer() ?>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" ?>
<dwsync>
<file name="404.php" local="128705767076250000" remote="128705749800000000" testing="0" />
<file name="comments.php" local="128733609121560000" remote="128733537000000000" testing="0" />
<file name="footer.php" local="128705873766875000" remote="128705801400000000" testing="0" />
<file name="functions.php" local="128705790567187500" remote="128705749800000000" testing="0" />
<file name="header.php" local="128705842015781250" remote="128705769600000000" testing="0" />
<file name="index.php" local="128705767082500000" remote="128705749800000000" testing="0" />
<file name="page.php" local="128705767082500000" remote="128705749800000000" testing="0" />
<file name="print.css" local="128705767082500000" remote="128705749800000000" testing="0" />
<file name="searchform.php" local="128705767083750000" remote="128705749800000000" testing="0" />
<file name="sidebar.php" local="128705789890000000" remote="128705749800000000" testing="0" />
<file name="single.php" local="128705767085312500" remote="128705749800000000" testing="0" />
<file name="style.css" local="128705868710781250" remote="128705796600000000" testing="0" />
<file name="screenshot.png" local="128705830829375008" remote="128705766000000000" testing="0" />
</dwsync>
\ No newline at end of file
<?php
if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
die ('Please do not load this page directly. Thanks!');
if ( post_password_required() ) {
echo '<p class="nocomments">This post is password protected. Enter the password to view comments.<p>';
return;
}
$oddcomment = 'alt';
?>
<div id="comments" class="clearfix">
<?php if ( have_comments() ) : ?>
<h2>Bring on the comments</h2>
<ol class="commentlist">
<?php wp_list_comments(array('avatar_size'=>48, 'reply_text'=>'Reply to this Comment')); ?>
</ol>
<div class="navigation">
<div class="alignleft"><?php previous_comments_link() ?></div>
<div class="alignright"><?php next_comments_link() ?></div>
</div>
<?php else : // this is displayed if there are no comments so far ?>
<?php if ('open' == $post->comment_status) :
// If comments are open, but there are no comments. ?>
<p>Be the first to comment.</p>
<?php
else : ?>
<p>Comments are closed for this entry.</p>
<?php
// comments are closed
endif;
endif;
if ('open' == $post->comment_status) : ?>
<div id="respond">
<h3><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h3>
<fieldset id="cancel-comment-reply">
<small><?php cancel_comment_reply_link() ?></small>
</fieldset>
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment.</p>
<?php else : ?>
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if ( $user_ID ) : ?>
<fieldset id="comment-author">
<small>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out &raquo;</a></small>
</fieldset>
<?php else : ?>
<fieldset id="comment-author">
<label for="author">Name <?php if ($req) echo "(required)"; ?></label>
<input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
<label for="email">Mail (will not be published) <?php if ($req) echo "(required)"; ?></label>
<input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
<label for="url">Website</label>
<input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
</fieldset>
<?php endif; ?>
<fieldset id="comment-text">
<p><textarea name="comment" id="comment" cols="45" rows="10" tabindex="4"></textarea></p>
<p><input name="submit_comment" type="submit" id="submit_comment" tabindex="5" value="Submit Comment" />
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
</p>
<?php
comment_id_fields();
do_action('comment_form', $post->ID);
?>
<!--<p><small><strong>XHTML:</strong> You can use these tags: <?php echo allowed_tags(); ?></small></p>-->
</fieldset>
</form>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
\ No newline at end of file
<ul id="footer">
<li class="left">&copy; <a href="<?php bloginfo('url') ?>" title="Home"><?php bloginfo('name') ?></a>. All Rights Reserved.</li>
<li class="right">WordPress Theme designed by <a href="http://www.chris-wallace.com" title="Chris Wallace">Chris Wallace</a></li>
<!-- I would appreciate if you would leave the link back to my site but is certainly not required. -->
</ul>
</div>
<?php wp_footer() ?>
</body>
</html>
\ No newline at end of file
<?php
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => '<div>',
'after_widget' => '</div>',
'before_title' => '<h2>',
'after_title' => '</h2>',
));
add_filter('comments_template', 'legacy_comments');
function legacy_comments($file) {
if ( !function_exists('wp_list_comments') )
$file = TEMPLATEPATH . '/legacy.comments.php';
return $file;
}
function comment_add_microid($classes) {
$c_email=get_comment_author_email();
$c_url=get_comment_author_url();
if (!empty($c_email) && !empty($c_url)) {
$microid = 'microid-mailto+http:sha1:' . sha1(sha1('mailto:'.$c_email).sha1($c_url));
$classes[] = $microid;
}
return $classes;
}
add_filter('comment_class','comment_add_microid');
?>
\ No newline at end of file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><? bloginfo('name'); ?> <? wp_title(); ?></title>
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url') ?>/style.css" media="screen" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url') ?>/print.css" media="print" />
<link rel="start" href="<?php bloginfo('url') ?>" title="Home" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<link rel="icon" type="image/x-icon" href="<?php bloginfo('template_url') ?>/favicon.ico" />
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
</head>
<body <?php if (is_home()) { ?>id="home"<?php } else { ?>id="interior" class="<?php echo $post->post_name; ?>"<?php } ?>>
<div id="container">
<div id="header">
<h1><a href="<?php bloginfo('url') ?>"><? bloginfo('name'); ?> // <? bloginfo('description'); ?></a></h1>
</div>
<div id="header-page"><a href="<?php bloginfo('rss2_url'); ?>"><img alt="RSS Feed" src="http://s.wordpress.org/style/images/feedicon10.png" /></a></div>
\ No newline at end of file
wp-content/themes/rusty-grunge/images/54_32x32.png

1.18 KiB

<?xml version="1.0" encoding="utf-8" ?>
<dwsync>
<file name="about-header.png" local="128705767077187500" remote="128705749800000000" testing="0" />
<file name="bg-body.jpg" local="128705820050468752" remote="128705749800000000" testing="0" />
<file name="bg-comment-alt.jpg" local="128705767077968750" remote="128705749800000000" testing="0" />
<file name="bg-comment-author.jpg" local="128705767078125000" remote="128705749800000000" testing="0" />
<file name="bg-comment.jpg" local="128705767078593750" remote="128705749800000000" testing="0" />
<file name="bg-content.png" local="128705767078906250" remote="128705749800000000" testing="0" />
<file name="bg-post-footer.png" local="128705767079218750" remote="128705749800000000" testing="0" />
<file name="bg-pre.jpg" local="128705767079218750" remote="128705749800000000" testing="0" />
<file name="bg-sidebar.png" local="128705767079687500" remote="128705749800000000" testing="0" />
<file name="btn-hide-show.png" local="128705767080468750" remote="128705749800000000" testing="0" />
<file name="header.png" local="128705766229687500" remote="128705749800000000" testing="0" />
<file name="ico-calendar.png" local="128705767081562500" remote="128705749800000000" testing="0" />
<file name="ico-speech.gif" local="128705767081562500" remote="128705749800000000" testing="0" />
<file name="ico-tags.gif" local="128705767081562500" remote="128705749800000000" testing="0" />
<file name="sidebar-h2.png" local="128705767082031250" remote="128705749800000000" testing="0" />
<file name="white-page-header.png" local="128705822434843750" remote="128705768400000000" testing="0" />
<file name="54_32x32.png" local="128705864142968750" remote="128705794200000000" testing="0" />
</dwsync>
\ No newline at end of file
wp-content/themes/rusty-grunge/images/about-header.png

98 KiB

wp-content/themes/rusty-grunge/images/bg-body.jpg

12.2 KiB

wp-content/themes/rusty-grunge/images/bg-comment-alt.jpg

3.88 KiB

wp-content/themes/rusty-grunge/images/bg-comment-author.jpg

14.1 KiB

wp-content/themes/rusty-grunge/images/bg-comment.jpg

8.68 KiB

wp-content/themes/rusty-grunge/images/bg-content.png

46.5 KiB

wp-content/themes/rusty-grunge/images/bg-post-footer.png

3.62 KiB

wp-content/themes/rusty-grunge/images/bg-pre.jpg

2.86 KiB

wp-content/themes/rusty-grunge/images/bg-sidebar.png

19.2 KiB

wp-content/themes/rusty-grunge/images/btn-hide-show.png

2.16 KiB

wp-content/themes/rusty-grunge/images/header.png

65.9 KiB

wp-content/themes/rusty-grunge/images/ico-calendar.png

1.64 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment