|
1 <?php |
|
2 /** |
|
3 * @package WordPress |
|
4 * @subpackage Classic_Theme |
|
5 */ |
|
6 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|
7 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
8 <head> |
|
9 <title><?php echo get_option('blogname'); ?> - <?php echo sprintf(__("Comments on %s"), the_title('','',false)); ?></title> |
|
10 |
|
11 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" /> |
|
12 <style type="text/css" media="screen"> |
|
13 @import url( <?php bloginfo('stylesheet_url'); ?> ); |
|
14 body { margin: 3px; } |
|
15 </style> |
|
16 |
|
17 </head> |
|
18 <body id="commentspopup"> |
|
19 |
|
20 <h1 id="header"><a href="" title="<?php echo get_option('blogname'); ?>"><?php echo get_option('blogname'); ?></a></h1> |
|
21 |
|
22 <?php |
|
23 /* Don't remove these lines. */ |
|
24 add_filter('comment_text', 'popuplinks'); |
|
25 if ( have_posts() ) : |
|
26 while( have_posts()) : the_post(); |
|
27 ?> |
|
28 |
|
29 <h2 id="comments"><?php _e("Comments"); ?></h2> |
|
30 |
|
31 <p><a href="<?php echo get_post_comments_feed_link($post->ID); ?>"><?php _e("<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post."); ?></a></p> |
|
32 |
|
33 <?php if ( pings_open() ) { ?> |
|
34 <p><?php _e("The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is:"); ?> <em><?php trackback_url() ?></em></p> |
|
35 <?php } ?> |
|
36 |
|
37 <?php |
|
38 // this line is WordPress' motor, do not delete it. |
|
39 $commenter = wp_get_current_commenter(); |
|
40 extract($commenter); |
|
41 $comments = get_approved_comments($id); |
|
42 $commentstatus = get_post($id); |
|
43 if ( post_password_required($commentstatus) ) { // and it doesn't match the cookie |
|
44 echo(get_the_password_form()); |
|
45 } else { ?> |
|
46 |
|
47 <?php if ($comments) { ?> |
|
48 <ol id="commentlist"> |
|
49 <?php foreach ($comments as $comment) { ?> |
|
50 <li id="comment-<?php comment_ID() ?>"> |
|
51 <?php comment_text() ?> |
|
52 <p><cite><?php comment_type(_x('Comment', 'noun'), __('Trackback'), __('Pingback')); ?> <?php _e("by"); ?> <?php comment_author_link() ?> — <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite></p> |
|
53 </li> |
|
54 |
|
55 <?php } // end for each comment ?> |
|
56 </ol> |
|
57 <?php } else { // this is displayed if there are no comments so far ?> |
|
58 <p><?php _e("No comments yet."); ?></p> |
|
59 <?php } ?> |
|
60 |
|
61 <?php if ( comments_open($commentstatus) ) { ?> |
|
62 <h2><?php _e("Leave a comment"); ?></h2> |
|
63 <p><?php _e("Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed:"); ?> <code><?php echo allowed_tags(); ?></code></p> |
|
64 |
|
65 <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> |
|
66 <?php if ( is_user_logged_in() ) : ?> |
|
67 <p><?php printf(__('Logged in as %s.'), '<a href="'.get_option('siteurl').'/wp-admin/profile.php">'.$user_identity.'</a>'); ?> <a href="<?php echo wp_logout_url(); ?>" title="<?php echo esc_attr(__('Log out of this account')); ?>"><?php _e('Log out »'); ?></a></p> |
|
68 <?php else : ?> |
|
69 <p> |
|
70 <input type="text" name="author" id="author" class="textarea" value="<?php echo esc_attr($comment_author); ?>" size="28" tabindex="1" /> |
|
71 <label for="author"><?php _e("Name"); ?></label> |
|
72 </p> |
|
73 |
|
74 <p> |
|
75 <input type="text" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" size="28" tabindex="2" /> |
|
76 <label for="email"><?php _e("E-mail"); ?></label> |
|
77 </p> |
|
78 |
|
79 <p> |
|
80 <input type="text" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" size="28" tabindex="3" /> |
|
81 <label for="url"><?php _e("<abbr title=\"Universal Resource Locator\">URL</abbr>"); ?></label> |
|
82 </p> |
|
83 <?php endif; ?> |
|
84 |
|
85 <p> |
|
86 <label for="comment"><?php _e("Your Comment"); ?></label> |
|
87 <br /> |
|
88 <textarea name="comment" id="comment" cols="70" rows="4" tabindex="4"></textarea> |
|
89 </p> |
|
90 |
|
91 <p> |
|
92 <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" /> |
|
93 <input type="hidden" name="redirect_to" value="<?php echo esc_attr($_SERVER["REQUEST_URI"]); ?>" /> |
|
94 <input name="submit" type="submit" tabindex="5" value="<?php esc_attr_e("Say It!"); ?>" /> |
|
95 </p> |
|
96 <?php do_action('comment_form', $post->ID); ?> |
|
97 </form> |
|
98 <?php } else { // comments are closed ?> |
|
99 <p><?php _e("Sorry, the comment form is closed at this time."); ?></p> |
|
100 <?php } |
|
101 } // end password check |
|
102 ?> |
|
103 |
|
104 <div><strong><a href="javascript:window.close()"><?php _e("Close this window."); ?></a></strong></div> |
|
105 |
|
106 <?php // if you delete this the sky will fall on your head |
|
107 endwhile; //endwhile have_posts() |
|
108 else: //have_posts() |
|
109 ?> |
|
110 <p>Sorry, no posts matched your criteria.</p> |
|
111 <?php endif; ?> |
|
112 |
|
113 <!-- // this is just the end of the motor - don't touch that line either :) --> |
|
114 <?php //} ?> |
|
115 <p class="credit"><?php timer_stop(1); ?> <?php echo sprintf(__("<cite>Powered by <a href=\"http://wordpress.org\" title=\"%s\"><strong>WordPress</strong></a></cite>"),__("Powered by WordPress, state-of-the-art semantic personal publishing platform.")); ?></p> |
|
116 <?php // Seen at http://www.mijnkopthee.nl/log2/archive/2003/05/28/esc(18) ?> |
|
117 <script type="text/javascript"> |
|
118 <!-- |
|
119 document.onkeypress = function esc(e) { |
|
120 if(typeof(e) == "undefined") { e=event; } |
|
121 if (e.keyCode == 27) { self.close(); } |
|
122 } |
|
123 // --> |
|
124 </script> |
|
125 </body> |
|
126 </html> |