├── .gitignore_global ├── 404.php ├── archive.php ├── attachment.php ├── author.php ├── category.php ├── changelog.txt ├── comments.php ├── css └── twentyten-style.css ├── editor-style-rtl.css ├── editor-style.css ├── footer.php ├── functions.php ├── header.php ├── images ├── headers │ ├── berries-thumbnail.jpg │ ├── berries.jpg │ ├── cherryblossoms-thumbnail.jpg │ ├── cherryblossoms.jpg │ ├── concave-thumbnail.jpg │ ├── concave.jpg │ ├── fern-thumbnail.jpg │ ├── fern.jpg │ ├── forestfloor-thumbnail.jpg │ ├── forestfloor.jpg │ ├── inkwell-thumbnail.jpg │ ├── inkwell.jpg │ ├── path-thumbnail.jpg │ ├── path.jpg │ ├── sunset-thumbnail.jpg │ └── sunset.jpg └── wordpress.png ├── index.php ├── js └── modernizr-1.6.min.js ├── languages └── twentyten.pot ├── license.txt ├── loop.php ├── onecolumn-page.php ├── page.php ├── rtl.css ├── screenshot.png ├── search.php ├── sidebar-footer.php ├── sidebar.php ├── single.php ├── style.css └── tag.php /.gitignore_global: -------------------------------------------------------------------------------- 1 | 2 | # Compiled source # 3 | ################### 4 | *.com 5 | *.class 6 | *.dll 7 | *.exe 8 | *.o 9 | *.so 10 | 11 | # Packages # 12 | ############ 13 | # it's better to unpack these files and commit the raw source 14 | # git has its own built in compression methods 15 | *.7z 16 | *.dmg 17 | *.gz 18 | *.iso 19 | *.jar 20 | *.rar 21 | *.tar 22 | *.zip 23 | 24 | # Logs and databases # 25 | ###################### 26 | *.log 27 | *.sql 28 | *.sqlite 29 | 30 | # OS generated files # 31 | ###################### 32 | .DS_Store? 33 | ehthumbs.db 34 | Icon? 35 | Thumbs.db 36 | 37 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 | 15 |
16 |

17 |
18 |

19 | 20 |
21 |
22 | 23 |
24 |
25 | 29 | 30 | -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- 1 | 16 | 17 |
18 |
19 | 20 | 30 |
31 |

32 | 33 | %s', 'twentyten' ), get_the_date() ); ?> 34 | 35 | %s', 'twentyten' ), get_the_date('F Y') ); ?> 36 | 37 | %s', 'twentyten' ), get_the_date('Y') ); ?> 38 | 39 | 40 | 41 |

42 |
43 | 44 | 57 | 58 |
59 |
60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /attachment.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 | 15 | 16 | 17 | post_parent ) ) : ?> 18 |

← %s', 'twentyten' ), get_the_title( $post->post_parent ) ); 21 | ?>

22 | 23 | 24 |
> 25 |
26 |

27 | 28 | 63 | 64 |
65 | 66 | 67 | 68 |
69 |
70 | $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); 72 | foreach ( $attachments as $k => $attachment ) { 73 | if ( $attachment->ID == $post->ID ) 74 | break; 75 | } 76 | $k++; 77 | // If there is more than 1 image attachment in a gallery 78 | if ( count( $attachments ) > 1 ) { 79 | if ( isset( $attachments[ $k ] ) ) 80 | // get the URL of the next image attachment 81 | $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); 82 | else 83 | // or get the URL of the first image attachment 84 | $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID ); 85 | } else { 86 | // or, if there's only 1 image attachment, get the URL of the image 87 | $next_attachment_url = wp_get_attachment_url(); 88 | } 89 | ?> 90 |

ID, array( $attachment_size, 9999 ) ); // filterable image width with, essentially, no limit for image height. 93 | ?>

94 | 95 | 99 | 100 | 101 | 102 |
103 |
post_excerpt ) ) the_excerpt(); ?>
104 | 105 | →', 'twentyten' ) ); ?> 106 | '' ) ); ?> 107 | 108 |
109 | 110 |
111 | 112 | ', '' ); ?> 113 |
114 |
115 | 116 | 117 | 118 | 119 | 120 |
121 |
122 | 123 | 124 | -------------------------------------------------------------------------------- /author.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 | 15 | 26 |
27 |

" . get_the_author() . "" ); ?>

28 |
29 | 30 | 33 |
34 |
35 | 36 |
37 |
38 |

39 | 40 |
41 |
42 | 43 | 44 | 57 |
58 |
59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /category.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 |

' . single_cat_title( '', false ) . '' ); 17 | ?>

18 |
19 | ' . $category_description . '
'; 23 | 24 | /* Run the loop for the category page to output the posts. 25 | * If you want to overload this in a child theme then include a file 26 | * called loop-category.php and that will be used instead. 27 | */ 28 | get_template_part( 'loop', 'category' ); 29 | ?> 30 | 31 |
32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- 1 | *** TwentyTen Five Changelog *** 2 | 3 | Last edited on 2011.02.22 by Richard Shepherd 4 | 5 | 6 | 2011.02.23 - version 1.0.1 7 | -------------------------- 8 | * Added support for post-thumbnails 9 | * Revised modernizer.js include to use wp_enqueue_script in functions.php 10 | * Amended no-javascript message 11 | * Merged TwentyTen functions.php with TwentyTen Five functions.php 12 | 13 | 14 | 2011.02.15 - version 1.0.0 15 | -------------------------- 16 | * First release! Whoop! 17 | * comments.php - changed navigation div to nav 18 | * footer.php - changed footer div to footer 19 | * functions.php - added custom image caption shortcode function, now uses figure and figcaption 20 | - created posted_on function to use date element 21 | - included functions to create HTML5 comment form 22 | * header.php - added link to modernizr script 23 | - added modernizr 'no-js' class to html element 24 | - added header element 25 | - changed masthead div to a section 26 | - added hgroup and introduced h2 element 27 | - changed navigation div to a nav 28 | * /js/ - added js folder and modernizr-1.6.min.js 29 | * loop.php - changed post divs to articles, 4 instances 30 | - changed 'nav above' and 'nav below' divs to navs 31 | * onecolumn-page.php - changed post div to article 32 | * page.php - changed post div to article 33 | * search.php - changed post div to article 34 | * sidebar-footer.php - footer widget area is now a section, widgets are now asides 35 | * single.php - changed post div to article 36 | - changed 'nav above' and 'nav below' divs to navs 37 | * style.css - added in relevant styles, uses twentyten as parent theme 38 | * added the TwentyTen Five screenshot.png 39 | * merged in the rest of twentyten so this is no longer a child theme 40 | -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- 1 | 15 | 16 |
17 | 18 |

19 |
20 | 28 | 29 | 32 | 33 | 34 |

' . get_the_title() . '' ); 37 | ?>

38 | 39 | 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?> 40 | 44 | 45 | 46 |
    47 | 'twentyten_comment' ) ); 55 | ?> 56 |
57 | 58 | 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?> 59 | 63 | 64 | 65 | 72 |

73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /css/twentyten-style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: Twenty Ten 3 | Theme URI: http://wordpress.org/ 4 | Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar. 5 | Author: the WordPress team 6 | Version: 1.1 7 | Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style 8 | */ 9 | 10 | 11 | /* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html 12 | -------------------------------------------------------------- */ 13 | 14 | html, body, div, span, applet, object, iframe, 15 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 16 | a, abbr, acronym, address, big, cite, code, 17 | del, dfn, em, font, img, ins, kbd, q, s, samp, 18 | small, strike, strong, sub, sup, tt, var, 19 | b, u, i, center, 20 | dl, dt, dd, ol, ul, li, 21 | fieldset, form, label, legend, 22 | table, caption, tbody, tfoot, thead, tr, th, td { 23 | background: transparent; 24 | border: 0; 25 | margin: 0; 26 | padding: 0; 27 | vertical-align: baseline; 28 | } 29 | body { 30 | line-height: 1; 31 | } 32 | h1, h2, h3, h4, h5, h6 { 33 | clear: both; 34 | font-weight: normal; 35 | } 36 | ol, ul { 37 | list-style: none; 38 | } 39 | blockquote { 40 | quotes: none; 41 | } 42 | blockquote:before, blockquote:after { 43 | content: ''; 44 | content: none; 45 | } 46 | del { 47 | text-decoration: line-through; 48 | } 49 | /* tables still need 'cellspacing="0"' in the markup */ 50 | table { 51 | border-collapse: collapse; 52 | border-spacing: 0; 53 | } 54 | a img { 55 | border: none; 56 | } 57 | 58 | /* =Layout 59 | -------------------------------------------------------------- */ 60 | 61 | /* 62 | LAYOUT: Two columns 63 | DESCRIPTION: Two-column fixed layout with one sidebar right of content 64 | */ 65 | 66 | #container { 67 | float: left; 68 | margin: 0 -240px 0 0; 69 | width: 100%; 70 | } 71 | #content { 72 | margin: 0 280px 0 20px; 73 | } 74 | #primary, 75 | #secondary { 76 | float: right; 77 | overflow: hidden; 78 | width: 220px; 79 | } 80 | #secondary { 81 | clear: right; 82 | } 83 | #footer { 84 | clear: both; 85 | width: 100%; 86 | } 87 | 88 | /* 89 | LAYOUT: One column, no sidebar 90 | DESCRIPTION: One centered column with no sidebar 91 | */ 92 | 93 | .one-column #content { 94 | margin: 0 auto; 95 | width: 640px; 96 | } 97 | 98 | /* 99 | LAYOUT: Full width, no sidebar 100 | DESCRIPTION: Full width content with no sidebar; used for attachment pages 101 | */ 102 | 103 | .single-attachment #content { 104 | margin: 0 auto; 105 | width: 900px; 106 | } 107 | 108 | 109 | /* =Fonts 110 | -------------------------------------------------------------- */ 111 | body, 112 | input, 113 | textarea, 114 | .page-title span, 115 | .pingback a.url { 116 | font-family: Georgia, "Bitstream Charter", serif; 117 | } 118 | h3#comments-title, 119 | h3#reply-title, 120 | #access .menu, 121 | #access div.menu ul, 122 | #cancel-comment-reply-link, 123 | .form-allowed-tags, 124 | #site-info, 125 | #site-title, 126 | #wp-calendar, 127 | .comment-meta, 128 | .comment-body tr th, 129 | .comment-body thead th, 130 | .entry-content label, 131 | .entry-content tr th, 132 | .entry-content thead th, 133 | .entry-meta, 134 | .entry-title, 135 | .entry-utility, 136 | #respond label, 137 | .navigation, 138 | .page-title, 139 | .pingback p, 140 | .reply, 141 | .widget-title, 142 | .wp-caption-text, 143 | input[type=submit] { 144 | font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif; 145 | } 146 | pre { 147 | font-family: "Courier 10 Pitch", Courier, monospace; 148 | } 149 | code { 150 | font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; 151 | } 152 | 153 | 154 | /* =Structure 155 | -------------------------------------------------------------- */ 156 | 157 | /* The main theme structure */ 158 | #access .menu-header, 159 | div.menu, 160 | #colophon, 161 | #branding, 162 | #main, 163 | #wrapper { 164 | margin: 0 auto; 165 | width: 940px; 166 | } 167 | #wrapper { 168 | background: #fff; 169 | margin-top: 20px; 170 | padding: 0 20px; 171 | } 172 | 173 | /* Structure the footer area */ 174 | #footer-widget-area { 175 | overflow: hidden; 176 | } 177 | #footer-widget-area .widget-area { 178 | float: left; 179 | margin-right: 20px; 180 | width: 220px; 181 | } 182 | #footer-widget-area #fourth { 183 | margin-right: 0; 184 | } 185 | #site-info { 186 | float: left; 187 | font-size: 14px; 188 | font-weight: bold; 189 | width: 700px; 190 | } 191 | #site-generator { 192 | float: right; 193 | width: 220px; 194 | } 195 | 196 | 197 | /* =Global Elements 198 | -------------------------------------------------------------- */ 199 | 200 | /* Main global 'theme' and typographic styles */ 201 | body { 202 | background: #f1f1f1; 203 | } 204 | body, 205 | input, 206 | textarea { 207 | color: #666; 208 | font-size: 12px; 209 | line-height: 18px; 210 | } 211 | hr { 212 | background-color: #e7e7e7; 213 | border: 0; 214 | clear: both; 215 | height: 1px; 216 | margin-bottom: 18px; 217 | } 218 | 219 | /* Text elements */ 220 | p { 221 | margin-bottom: 18px; 222 | } 223 | ul { 224 | list-style: square; 225 | margin: 0 0 18px 1.5em; 226 | } 227 | ol { 228 | list-style: decimal; 229 | margin: 0 0 18px 1.5em; 230 | } 231 | ol ol { 232 | list-style: upper-alpha; 233 | } 234 | ol ol ol { 235 | list-style: lower-roman; 236 | } 237 | ol ol ol ol { 238 | list-style: lower-alpha; 239 | } 240 | ul ul, 241 | ol ol, 242 | ul ol, 243 | ol ul { 244 | margin-bottom: 0; 245 | } 246 | dl { 247 | margin: 0 0 24px 0; 248 | } 249 | dt { 250 | font-weight: bold; 251 | } 252 | dd { 253 | margin-bottom: 18px; 254 | } 255 | strong { 256 | font-weight: bold; 257 | } 258 | cite, 259 | em, 260 | i { 261 | font-style: italic; 262 | } 263 | big { 264 | font-size: 131.25%; 265 | } 266 | ins { 267 | background: #ffc; 268 | text-decoration: none; 269 | } 270 | blockquote { 271 | font-style: italic; 272 | padding: 0 3em; 273 | } 274 | blockquote cite, 275 | blockquote em, 276 | blockquote i { 277 | font-style: normal; 278 | } 279 | pre { 280 | background: #f7f7f7; 281 | color: #222; 282 | line-height: 18px; 283 | margin-bottom: 18px; 284 | padding: 1.5em; 285 | } 286 | abbr, 287 | acronym { 288 | border-bottom: 1px dotted #666; 289 | cursor: help; 290 | } 291 | sup, 292 | sub { 293 | height: 0; 294 | line-height: 1; 295 | position: relative; 296 | vertical-align: baseline; 297 | } 298 | sup { 299 | bottom: 1ex; 300 | } 301 | sub { 302 | top: .5ex; 303 | } 304 | input[type="text"], 305 | textarea { 306 | background: #f9f9f9; 307 | border: 1px solid #ccc; 308 | box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); 309 | -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); 310 | -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); 311 | padding: 2px; 312 | } 313 | a:link { 314 | color: #0066cc; 315 | } 316 | a:visited { 317 | color: #743399; 318 | } 319 | a:active, 320 | a:hover { 321 | color: #ff4b33; 322 | } 323 | 324 | /* Text meant only for screen readers */ 325 | .screen-reader-text { 326 | position: absolute; 327 | left: -9000px; 328 | } 329 | 330 | 331 | /* =Header 332 | -------------------------------------------------------------- */ 333 | 334 | #header { 335 | padding: 30px 0 0 0; 336 | } 337 | #site-title { 338 | float: left; 339 | font-size: 30px; 340 | line-height: 36px; 341 | margin: 0 0 18px 0; 342 | width: 700px; 343 | } 344 | #site-title a { 345 | color: #000; 346 | font-weight: bold; 347 | text-decoration: none; 348 | } 349 | #site-description { 350 | clear: right; 351 | float: right; 352 | font-style: italic; 353 | margin: 14px 0 18px 0; 354 | width: 220px; 355 | } 356 | 357 | /* This is the custom header image */ 358 | #branding img { 359 | border-top: 4px solid #000; 360 | border-bottom: 1px solid #000; 361 | clear: both; 362 | display: block; 363 | } 364 | 365 | 366 | /* =Menu 367 | -------------------------------------------------------------- */ 368 | 369 | #access { 370 | background: #000; 371 | display: block; 372 | float: left; 373 | margin: 0 auto; 374 | width: 940px; 375 | } 376 | #access .menu-header, 377 | div.menu { 378 | font-size: 13px; 379 | margin-left: 12px; 380 | width: 928px; 381 | } 382 | #access .menu-header ul, 383 | div.menu ul { 384 | list-style: none; 385 | margin: 0; 386 | } 387 | #access .menu-header li, 388 | div.menu li { 389 | float: left; 390 | position: relative; 391 | } 392 | #access a { 393 | color: #aaa; 394 | display: block; 395 | line-height: 38px; 396 | padding: 0 10px; 397 | text-decoration: none; 398 | } 399 | #access ul ul { 400 | box-shadow: 0px 3px 3px rgba(0,0,0,0.2); 401 | -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2); 402 | -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2); 403 | display: none; 404 | position: absolute; 405 | top: 38px; 406 | left: 0; 407 | float: left; 408 | width: 180px; 409 | z-index: 99999; 410 | } 411 | #access ul ul li { 412 | min-width: 180px; 413 | } 414 | #access ul ul ul { 415 | left: 100%; 416 | top: 0; 417 | } 418 | #access ul ul a { 419 | background: #333; 420 | line-height: 1em; 421 | padding: 10px; 422 | width: 160px; 423 | height: auto; 424 | } 425 | #access li:hover > a, 426 | #access ul ul :hover > a { 427 | background: #333; 428 | color: #fff; 429 | } 430 | #access ul li:hover > ul { 431 | display: block; 432 | } 433 | #access ul li.current_page_item > a, 434 | #access ul li.current-menu-ancestor > a, 435 | #access ul li.current-menu-item > a, 436 | #access ul li.current-menu-parent > a { 437 | color: #fff; 438 | } 439 | * html #access ul li.current_page_item a, 440 | * html #access ul li.current-menu-ancestor a, 441 | * html #access ul li.current-menu-item a, 442 | * html #access ul li.current-menu-parent a, 443 | * html #access ul li a:hover { 444 | color: #fff; 445 | } 446 | 447 | 448 | /* =Content 449 | -------------------------------------------------------------- */ 450 | 451 | #main { 452 | clear: both; 453 | overflow: hidden; 454 | padding: 40px 0 0 0; 455 | } 456 | #content { 457 | margin-bottom: 36px; 458 | } 459 | #content, 460 | #content input, 461 | #content textarea { 462 | color: #333; 463 | font-size: 16px; 464 | line-height: 24px; 465 | } 466 | #content p, 467 | #content ul, 468 | #content ol, 469 | #content dd, 470 | #content pre, 471 | #content hr { 472 | margin-bottom: 24px; 473 | } 474 | #content ul ul, 475 | #content ol ol, 476 | #content ul ol, 477 | #content ol ul { 478 | margin-bottom: 0; 479 | } 480 | #content pre, 481 | #content kbd, 482 | #content tt, 483 | #content var { 484 | font-size: 15px; 485 | line-height: 21px; 486 | } 487 | #content code { 488 | font-size: 13px; 489 | } 490 | #content dt, 491 | #content th { 492 | color: #000; 493 | } 494 | #content h1, 495 | #content h2, 496 | #content h3, 497 | #content h4, 498 | #content h5, 499 | #content h6 { 500 | color: #000; 501 | line-height: 1.5em; 502 | margin: 0 0 20px 0; 503 | } 504 | #content table { 505 | border: 1px solid #e7e7e7; 506 | margin: 0 -1px 24px 0; 507 | text-align: left; 508 | width: 100%; 509 | } 510 | #content tr th, 511 | #content thead th { 512 | color: #888; 513 | font-size: 12px; 514 | font-weight: bold; 515 | line-height: 18px; 516 | padding: 9px 24px; 517 | } 518 | #content tr td { 519 | border-top: 1px solid #e7e7e7; 520 | padding: 6px 24px; 521 | } 522 | #content tr.odd td { 523 | background: #f2f7fc; 524 | } 525 | .hentry { 526 | margin: 0 0 48px 0; 527 | } 528 | .home .sticky { 529 | background: #f2f7fc; 530 | border-top: 4px solid #000; 531 | margin-left: -20px; 532 | margin-right: -20px; 533 | padding: 18px 20px; 534 | } 535 | .single .hentry { 536 | margin: 0 0 36px 0; 537 | } 538 | .page-title { 539 | color: #000; 540 | font-size: 14px; 541 | font-weight: bold; 542 | margin: 0 0 36px 0; 543 | } 544 | .page-title span { 545 | color: #333; 546 | font-size: 16px; 547 | font-style: italic; 548 | font-weight: normal; 549 | } 550 | .page-title a:link, 551 | .page-title a:visited { 552 | color: #888; 553 | text-decoration: none; 554 | } 555 | .page-title a:active, 556 | .page-title a:hover { 557 | color: #ff4b33; 558 | } 559 | #content .entry-title { 560 | color: #000; 561 | font-size: 21px; 562 | font-weight: bold; 563 | line-height: 1.3em; 564 | margin-bottom: 0; 565 | } 566 | .entry-title a:link, 567 | .entry-title a:visited { 568 | color: #000; 569 | text-decoration: none; 570 | } 571 | .entry-title a:active, 572 | .entry-title a:hover { 573 | color: #ff4b33; 574 | } 575 | .entry-meta { 576 | color: #888; 577 | font-size: 12px; 578 | } 579 | .entry-meta abbr, 580 | .entry-utility abbr { 581 | border: none; 582 | } 583 | .entry-meta abbr:hover, 584 | .entry-utility abbr:hover { 585 | border-bottom: 1px dotted #666; 586 | } 587 | .entry-content, 588 | .entry-summary { 589 | clear: both; 590 | padding: 12px 0 0 0; 591 | } 592 | #content .entry-summary p:last-child { 593 | margin-bottom: 12px; 594 | } 595 | .entry-content fieldset { 596 | border: 1px solid #e7e7e7; 597 | margin: 0 0 24px 0; 598 | padding: 24px; 599 | } 600 | .entry-content fieldset legend { 601 | background: #fff; 602 | color: #000; 603 | font-weight: bold; 604 | padding: 0 24px; 605 | } 606 | .entry-content input { 607 | margin: 0 0 24px 0; 608 | } 609 | .entry-content input.file, 610 | .entry-content input.button { 611 | margin-right: 24px; 612 | } 613 | .entry-content label { 614 | color: #888; 615 | font-size: 12px; 616 | } 617 | .entry-content select { 618 | margin: 0 0 24px 0; 619 | } 620 | .entry-content sup, 621 | .entry-content sub { 622 | font-size: 10px; 623 | } 624 | .entry-content blockquote.left { 625 | float: left; 626 | margin-left: 0; 627 | margin-right: 24px; 628 | text-align: right; 629 | width: 33%; 630 | } 631 | .entry-content blockquote.right { 632 | float: right; 633 | margin-left: 24px; 634 | margin-right: 0; 635 | text-align: left; 636 | width: 33%; 637 | } 638 | .page-link { 639 | color: #000; 640 | font-weight: bold; 641 | margin: 0 0 22px 0; 642 | word-spacing: 0.5em; 643 | } 644 | .page-link a:link, 645 | .page-link a:visited { 646 | background: #f1f1f1; 647 | color: #333; 648 | font-weight: normal; 649 | padding: 0.5em 0.75em; 650 | text-decoration: none; 651 | } 652 | .home .sticky .page-link a { 653 | background: #d9e8f7; 654 | } 655 | .page-link a:active, 656 | .page-link a:hover { 657 | color: #ff4b33; 658 | } 659 | body.page .edit-link { 660 | clear: both; 661 | display: block; 662 | } 663 | #entry-author-info { 664 | background: #f2f7fc; 665 | border-top: 4px solid #000; 666 | clear: both; 667 | font-size: 14px; 668 | line-height: 20px; 669 | margin: 24px 0; 670 | overflow: hidden; 671 | padding: 18px 20px; 672 | } 673 | #entry-author-info #author-avatar { 674 | background: #fff; 675 | border: 1px solid #e7e7e7; 676 | float: left; 677 | height: 60px; 678 | margin: 0 -104px 0 0; 679 | padding: 11px; 680 | } 681 | #entry-author-info #author-description { 682 | float: left; 683 | margin: 0 0 0 104px; 684 | } 685 | #entry-author-info h2 { 686 | color: #000; 687 | font-size: 100%; 688 | font-weight: bold; 689 | margin-bottom: 0; 690 | } 691 | .entry-utility { 692 | clear: both; 693 | color: #888; 694 | font-size: 12px; 695 | line-height: 18px; 696 | } 697 | .entry-meta a, 698 | .entry-utility a { 699 | color: #888; 700 | } 701 | .entry-meta a:hover, 702 | .entry-utility a:hover { 703 | color: #ff4b33; 704 | } 705 | #content .video-player { 706 | padding: 0; 707 | } 708 | 709 | 710 | /* =Asides 711 | -------------------------------------------------------------- */ 712 | 713 | .home #content .category-asides p { 714 | font-size: 14px; 715 | line-height: 20px; 716 | margin-bottom: 10px; 717 | margin-top: 0; 718 | } 719 | .home .hentry.category-asides { 720 | padding: 0; 721 | } 722 | .home #content .category-asides .entry-content { 723 | padding-top: 0; 724 | } 725 | 726 | 727 | /* =Gallery listing 728 | -------------------------------------------------------------- */ 729 | 730 | .category-gallery .size-thumbnail img { 731 | border: 10px solid #f1f1f1; 732 | margin-bottom: 0; 733 | } 734 | .category-gallery .gallery-thumb { 735 | float: left; 736 | margin-right: 20px; 737 | margin-top: -4px; 738 | } 739 | .home #content .category-gallery .entry-utility { 740 | padding-top: 4px; 741 | } 742 | 743 | 744 | /* =Attachment pages 745 | -------------------------------------------------------------- */ 746 | 747 | .attachment .entry-content .entry-caption { 748 | font-size: 140%; 749 | margin-top: 24px; 750 | } 751 | .attachment .entry-content .nav-previous a:before { 752 | content: '\2190\00a0'; 753 | } 754 | .attachment .entry-content .nav-next a:after { 755 | content: '\00a0\2192'; 756 | } 757 | 758 | 759 | /* =Images 760 | -------------------------------------------------------------- */ 761 | 762 | #content img { 763 | margin: 0; 764 | height: auto; 765 | max-width: 640px; 766 | width: auto; 767 | } 768 | #content .attachment img { 769 | max-width: 900px; 770 | } 771 | #content .alignleft, 772 | #content img.alignleft { 773 | display: inline; 774 | float: left; 775 | margin-right: 24px; 776 | margin-top: 4px; 777 | } 778 | #content .alignright, 779 | #content img.alignright { 780 | display: inline; 781 | float: right; 782 | margin-left: 24px; 783 | margin-top: 4px; 784 | } 785 | #content .aligncenter, 786 | #content img.aligncenter { 787 | clear: both; 788 | display: block; 789 | margin-left: auto; 790 | margin-right: auto; 791 | } 792 | #content img.alignleft, 793 | #content img.alignright, 794 | #content img.aligncenter { 795 | margin-bottom: 12px; 796 | } 797 | #content .wp-caption { 798 | background: #f1f1f1; 799 | line-height: 18px; 800 | margin-bottom: 20px; 801 | padding: 4px; 802 | text-align: center; 803 | } 804 | #content .wp-caption img { 805 | margin: 5px 5px 0; 806 | } 807 | #content .wp-caption p.wp-caption-text { 808 | color: #888; 809 | font-size: 12px; 810 | margin: 5px; 811 | } 812 | #content .wp-smiley { 813 | margin: 0; 814 | } 815 | #content .gallery { 816 | margin: 0 auto 18px; 817 | } 818 | #content .gallery .gallery-item { 819 | float: left; 820 | margin-top: 0; 821 | text-align: center; 822 | width: 33%; 823 | } 824 | #content .gallery img { 825 | border: 2px solid #cfcfcf; 826 | } 827 | #content .gallery .gallery-caption { 828 | color: #888; 829 | font-size: 12px; 830 | margin: 0 0 12px; 831 | } 832 | #content .gallery dl { 833 | margin: 0; 834 | } 835 | #content .gallery img { 836 | border: 10px solid #f1f1f1; 837 | } 838 | #content .gallery br+br { 839 | display: none; 840 | } 841 | #content .attachment img { /* single attachment images should be centered */ 842 | display: block; 843 | margin: 0 auto; 844 | } 845 | 846 | 847 | /* =Navigation 848 | -------------------------------------------------------------- */ 849 | 850 | .navigation { 851 | color: #888; 852 | font-size: 12px; 853 | line-height: 18px; 854 | overflow: hidden; 855 | } 856 | .navigation a:link, 857 | .navigation a:visited { 858 | color: #888; 859 | text-decoration: none; 860 | } 861 | .navigation a:active, 862 | .navigation a:hover { 863 | color: #ff4b33; 864 | } 865 | .nav-previous { 866 | float: left; 867 | width: 50%; 868 | } 869 | .nav-next { 870 | float: right; 871 | text-align: right; 872 | width: 50%; 873 | } 874 | #nav-above { 875 | margin: 0 0 18px 0; 876 | } 877 | #nav-above { 878 | display: none; 879 | } 880 | .paged #nav-above, 881 | .single #nav-above { 882 | display: block; 883 | } 884 | #nav-below { 885 | margin: -18px 0 0 0; 886 | } 887 | 888 | 889 | /* =Comments 890 | -------------------------------------------------------------- */ 891 | #comments { 892 | clear: both; 893 | } 894 | #comments .navigation { 895 | padding: 0 0 18px 0; 896 | } 897 | h3#comments-title, 898 | h3#reply-title { 899 | color: #000; 900 | font-size: 20px; 901 | font-weight: bold; 902 | margin-bottom: 0; 903 | } 904 | h3#comments-title { 905 | padding: 24px 0; 906 | } 907 | .commentlist { 908 | list-style: none; 909 | margin: 0; 910 | } 911 | .commentlist li.comment { 912 | border-bottom: 1px solid #e7e7e7; 913 | line-height: 24px; 914 | margin: 0 0 24px 0; 915 | padding: 0 0 0 56px; 916 | position: relative; 917 | } 918 | .commentlist li:last-child { 919 | border-bottom: none; 920 | margin-bottom: 0; 921 | } 922 | #comments .comment-body ul, 923 | #comments .comment-body ol { 924 | margin-bottom: 18px; 925 | } 926 | #comments .comment-body p:last-child { 927 | margin-bottom: 6px; 928 | } 929 | #comments .comment-body blockquote p:last-child { 930 | margin-bottom: 24px; 931 | } 932 | .commentlist ol { 933 | list-style: decimal; 934 | } 935 | .commentlist .avatar { 936 | position: absolute; 937 | top: 4px; 938 | left: 0; 939 | } 940 | .comment-author { 941 | } 942 | .comment-author cite { 943 | color: #000; 944 | font-style: normal; 945 | font-weight: bold; 946 | } 947 | .comment-author .says { 948 | font-style: italic; 949 | } 950 | .comment-meta { 951 | font-size: 12px; 952 | margin: 0 0 18px 0; 953 | } 954 | .comment-meta a:link, 955 | .comment-meta a:visited { 956 | color: #888; 957 | text-decoration: none; 958 | } 959 | .comment-meta a:active, 960 | .comment-meta a:hover { 961 | color: #ff4b33; 962 | } 963 | .commentlist .even { 964 | } 965 | .commentlist .bypostauthor { 966 | } 967 | .reply { 968 | font-size: 12px; 969 | padding: 0 0 24px 0; 970 | } 971 | .reply a, 972 | a.comment-edit-link { 973 | color: #888; 974 | } 975 | .reply a:hover, 976 | a.comment-edit-link:hover { 977 | color: #ff4b33; 978 | } 979 | .commentlist .children { 980 | list-style: none; 981 | margin: 0; 982 | } 983 | .commentlist .children li { 984 | border: none; 985 | margin: 0; 986 | } 987 | .nopassword, 988 | .nocomments { 989 | display: none; 990 | } 991 | #comments .pingback { 992 | border-bottom: 1px solid #e7e7e7; 993 | margin-bottom: 18px; 994 | padding-bottom: 18px; 995 | } 996 | .commentlist li.comment+li.pingback { 997 | margin-top: -6px; 998 | } 999 | #comments .pingback p { 1000 | color: #888; 1001 | display: block; 1002 | font-size: 12px; 1003 | line-height: 18px; 1004 | margin: 0; 1005 | } 1006 | #comments .pingback .url { 1007 | font-size: 13px; 1008 | font-style: italic; 1009 | } 1010 | 1011 | /* Comments form */ 1012 | input[type=submit] { 1013 | color: #333; 1014 | } 1015 | #respond { 1016 | border-top: 1px solid #e7e7e7; 1017 | margin: 24px 0; 1018 | overflow: hidden; 1019 | position: relative; 1020 | } 1021 | #respond p { 1022 | margin: 0; 1023 | } 1024 | #respond .comment-notes { 1025 | margin-bottom: 1em; 1026 | } 1027 | .form-allowed-tags { 1028 | line-height: 1em; 1029 | } 1030 | .children #respond { 1031 | margin: 0 48px 0 0; 1032 | } 1033 | h3#reply-title { 1034 | margin: 18px 0; 1035 | } 1036 | #comments-list #respond { 1037 | margin: 0 0 18px 0; 1038 | } 1039 | #comments-list ul #respond { 1040 | margin: 0; 1041 | } 1042 | #cancel-comment-reply-link { 1043 | font-size: 12px; 1044 | font-weight: normal; 1045 | line-height: 18px; 1046 | } 1047 | #respond .required { 1048 | color: #ff4b33; 1049 | font-weight: bold; 1050 | } 1051 | #respond label { 1052 | color: #888; 1053 | font-size: 12px; 1054 | } 1055 | #respond input { 1056 | margin: 0 0 9px; 1057 | width: 98%; 1058 | } 1059 | #respond textarea { 1060 | width: 98%; 1061 | } 1062 | #respond .form-allowed-tags { 1063 | color: #888; 1064 | font-size: 12px; 1065 | line-height: 18px; 1066 | } 1067 | #respond .form-allowed-tags code { 1068 | font-size: 11px; 1069 | } 1070 | #respond .form-submit { 1071 | margin: 12px 0; 1072 | } 1073 | #respond .form-submit input { 1074 | font-size: 14px; 1075 | width: auto; 1076 | } 1077 | 1078 | 1079 | /* =Widget Areas 1080 | -------------------------------------------------------------- */ 1081 | 1082 | .widget-area ul { 1083 | list-style: none; 1084 | margin-left: 0; 1085 | } 1086 | .widget-area ul ul { 1087 | list-style: square; 1088 | margin-left: 1.3em; 1089 | } 1090 | .widget_search #s {/* This keeps the search inputs in line */ 1091 | width: 60%; 1092 | } 1093 | .widget_search label { 1094 | display: none; 1095 | } 1096 | .widget-container { 1097 | margin: 0 0 18px 0; 1098 | } 1099 | .widget-title { 1100 | color: #222; 1101 | font-weight: bold; 1102 | } 1103 | .widget-area a:link, 1104 | .widget-area a:visited { 1105 | text-decoration: none; 1106 | } 1107 | .widget-area a:active, 1108 | .widget-area a:hover { 1109 | text-decoration: underline; 1110 | } 1111 | .widget-area .entry-meta { 1112 | font-size: 11px; 1113 | } 1114 | #wp_tag_cloud div { 1115 | line-height: 1.6em; 1116 | } 1117 | #wp-calendar { 1118 | width: 100%; 1119 | } 1120 | #wp-calendar caption { 1121 | color: #222; 1122 | font-size: 14px; 1123 | font-weight: bold; 1124 | padding-bottom: 4px; 1125 | text-align: left; 1126 | } 1127 | #wp-calendar thead { 1128 | font-size: 11px; 1129 | } 1130 | #wp-calendar thead th { 1131 | } 1132 | #wp-calendar tbody { 1133 | color: #aaa; 1134 | } 1135 | #wp-calendar tbody td { 1136 | background: #f5f5f5; 1137 | border: 1px solid #fff; 1138 | padding: 3px 0 2px; 1139 | text-align: center; 1140 | } 1141 | #wp-calendar tbody .pad { 1142 | background: none; 1143 | } 1144 | #wp-calendar tfoot #next { 1145 | text-align: right; 1146 | } 1147 | .widget_rss a.rsswidget { 1148 | color: #000; 1149 | } 1150 | .widget_rss a.rsswidget:hover { 1151 | color: #ff4b33; 1152 | } 1153 | .widget_rss .widget-title img { 1154 | width: 11px; 1155 | height: 11px; 1156 | } 1157 | 1158 | /* Main sidebars */ 1159 | #main .widget-area ul { 1160 | margin-left: 0; 1161 | padding: 0 20px 0 0; 1162 | } 1163 | #main .widget-area ul ul { 1164 | border: none; 1165 | margin-left: 1.3em; 1166 | padding: 0; 1167 | } 1168 | #primary { 1169 | } 1170 | #secondary { 1171 | } 1172 | 1173 | /* Footer widget areas */ 1174 | #footer-widget-area { 1175 | } 1176 | 1177 | 1178 | /* =Footer 1179 | -------------------------------------------------------------- */ 1180 | 1181 | #footer { 1182 | margin-bottom: 20px; 1183 | } 1184 | #colophon { 1185 | border-top: 4px solid #000; 1186 | margin-top: -4px; 1187 | overflow: hidden; 1188 | padding: 18px 0; 1189 | } 1190 | #site-info { 1191 | font-weight: bold; 1192 | } 1193 | #site-info a { 1194 | color: #000; 1195 | text-decoration: none; 1196 | } 1197 | #site-generator { 1198 | font-style: italic; 1199 | position: relative; 1200 | } 1201 | #site-generator a { 1202 | background: url(../images/wordpress.png) center left no-repeat; 1203 | color: #666; 1204 | display: inline-block; 1205 | line-height: 16px; 1206 | padding-left: 20px; 1207 | text-decoration: none; 1208 | } 1209 | #site-generator a:hover { 1210 | text-decoration: underline; 1211 | } 1212 | img#wpstats { 1213 | display: block; 1214 | margin: 0 auto 10px; 1215 | } 1216 | 1217 | 1218 | /* =Mobile Safari ( iPad, iPhone and iPod Touch ) 1219 | -------------------------------------------------------------- */ 1220 | 1221 | pre { 1222 | -webkit-text-size-adjust: 140%; 1223 | } 1224 | code { 1225 | -webkit-text-size-adjust: 160%; 1226 | } 1227 | #access, 1228 | .entry-meta, 1229 | .entry-utility, 1230 | .navigation, 1231 | .widget-area { 1232 | -webkit-text-size-adjust: 120%; 1233 | } 1234 | #site-description { 1235 | -webkit-text-size-adjust: none; 1236 | } 1237 | 1238 | 1239 | /* =Print Style 1240 | -------------------------------------------------------------- */ 1241 | 1242 | @media print { 1243 | body { 1244 | background: none !important; 1245 | } 1246 | #wrapper { 1247 | clear: both !important; 1248 | display: block !important; 1249 | float: none !important; 1250 | position: relative !important; 1251 | } 1252 | #header { 1253 | border-bottom: 2pt solid #000; 1254 | padding-bottom: 18pt; 1255 | } 1256 | #colophon { 1257 | border-top: 2pt solid #000; 1258 | } 1259 | #site-title, 1260 | #site-description { 1261 | float: none; 1262 | line-height: 1.4em; 1263 | margin: 0; 1264 | padding: 0; 1265 | } 1266 | #site-title { 1267 | font-size: 13pt; 1268 | } 1269 | .entry-content { 1270 | font-size: 14pt; 1271 | line-height: 1.6em; 1272 | } 1273 | .entry-title { 1274 | font-size: 21pt; 1275 | } 1276 | #access, 1277 | #branding img, 1278 | #respond, 1279 | .comment-edit-link, 1280 | .edit-link, 1281 | .navigation, 1282 | .page-link, 1283 | .widget-area { 1284 | display: none !important; 1285 | } 1286 | #container, 1287 | #header, 1288 | #footer { 1289 | margin: 0; 1290 | width: 100%; 1291 | } 1292 | #content, 1293 | .one-column #content { 1294 | margin: 24pt 0 0; 1295 | width: 100%; 1296 | } 1297 | .wp-caption p { 1298 | font-size: 11pt; 1299 | } 1300 | #site-info, 1301 | #site-generator { 1302 | float: none; 1303 | width: auto; 1304 | } 1305 | #colophon { 1306 | width: auto; 1307 | } 1308 | img#wpstats { 1309 | display: none; 1310 | } 1311 | #site-generator a { 1312 | margin: 0; 1313 | padding: 0; 1314 | } 1315 | #entry-author-info { 1316 | border: 1px solid #e7e7e7; 1317 | } 1318 | #main { 1319 | display: inline; 1320 | } 1321 | .home .sticky { 1322 | border: none; 1323 | } 1324 | } 1325 | -------------------------------------------------------------------------------- /editor-style-rtl.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: Twenty Ten 3 | */ 4 | /* 5 | Used to style the TinyMCE editor. 6 | */ 7 | html .mceContentBody{ 8 | direction:rtl; 9 | unicode-bidi:embed; 10 | float:right; 11 | } 12 | * { 13 | font-family: Arial, Tahoma, sans-serif; 14 | } 15 | /* Text elements */ 16 | ul { 17 | margin: 0 -18px 18px 0; 18 | } 19 | ol { 20 | margin: 0 -18px 18px 0; 21 | } 22 | dd { 23 | margin-right: 0; 24 | } 25 | blockquote { 26 | font-style: normal; 27 | } 28 | table { 29 | text-align: right; 30 | margin: 0 0 24px -1px; 31 | } 32 | html .mceContentBody{ 33 | direction:rtl; 34 | unicode-bidi:embed; 35 | float:right; 36 | } 37 | * { 38 | font-family: Arial, Tahoma, sans-serif; 39 | } 40 | /* Text elements */ 41 | ul { 42 | margin: 0 -18px 18px 0; 43 | } 44 | ol { 45 | margin: 0 -18px 18px 0; 46 | } 47 | dd { 48 | margin-right: 0; 49 | } 50 | blockquote { 51 | font-style: normal; 52 | } 53 | table { 54 | text-align: right; 55 | margin: 0 0 24px -1px; 56 | } -------------------------------------------------------------------------------- /editor-style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: Twenty Ten 3 | */ 4 | /* 5 | Used to style the TinyMCE editor. 6 | */ 7 | html .mceContentBody { 8 | max-width:640px; 9 | } 10 | * { 11 | font-family: Georgia, "Bitstream Charter", serif; 12 | color: #444; 13 | line-height: 1.5; 14 | } 15 | p, 16 | dl, 17 | td, 18 | th, 19 | ul, 20 | ol, 21 | blockquote { 22 | font-size: 16px; 23 | } 24 | tr th, 25 | thead th, 26 | label, 27 | tr th, 28 | thead th { 29 | font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif; 30 | } 31 | pre { 32 | font-family: "Courier 10 Pitch", Courier, monospace; 33 | } 34 | code, code var { 35 | font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; 36 | } 37 | body, input, textarea { 38 | font-size: 12px; 39 | line-height: 18px; 40 | } 41 | hr { 42 | background-color: #e7e7e7; 43 | border:0; 44 | height: 1px; 45 | margin-bottom: 18px; 46 | clear:both; 47 | } 48 | /* Text elements */ 49 | p { 50 | margin-bottom: 18px; 51 | } 52 | ul { 53 | list-style: square; 54 | margin: 0 0 18px 1.5em; 55 | } 56 | ol { 57 | list-style: decimal; 58 | margin: 0 0 18px 1.5em; 59 | } 60 | ol ol { 61 | list-style:upper-alpha; 62 | } 63 | ol ol ol { 64 | list-style:lower-roman; 65 | } 66 | ol ol ol ol { 67 | list-style:lower-alpha; 68 | } 69 | ul ul, 70 | ol ol, 71 | ul ol, 72 | ol ul { 73 | margin-bottom:0; 74 | } 75 | dl { 76 | margin:0 0 24px 0; 77 | } 78 | dt { 79 | font-weight: bold; 80 | } 81 | dd { 82 | margin-bottom: 18px; 83 | } 84 | strong { 85 | font-weight: bold; 86 | color: #000; 87 | } 88 | cite, 89 | em, 90 | i { 91 | font-style: italic; 92 | border: none; 93 | } 94 | big { 95 | font-size: 131.25%; 96 | } 97 | ins { 98 | background: #ffffcc; 99 | border: none; 100 | color: #333; 101 | } 102 | del { 103 | text-decoration: line-through; 104 | color: #555; 105 | } 106 | blockquote { 107 | font-style: italic; 108 | padding: 0 3em; 109 | } 110 | blockquote cite, 111 | blockquote em, 112 | blockquote i { 113 | font-style: normal; 114 | } 115 | pre { 116 | background: #f7f7f7; 117 | color: #222; 118 | line-height: 18px; 119 | margin-bottom: 18px; 120 | padding: 1.5em; 121 | } 122 | abbr, 123 | acronym { 124 | border-bottom: 1px dotted #666; 125 | cursor: help; 126 | } 127 | ins { 128 | text-decoration: none; 129 | } 130 | sup, 131 | sub { 132 | height: 0; 133 | line-height: 1; 134 | vertical-align: baseline; 135 | position: relative; 136 | font-size: 10px; 137 | } 138 | sup { 139 | bottom: 1ex; 140 | } 141 | sub { 142 | top: .5ex; 143 | } 144 | a:link { 145 | color:#0066cc; 146 | } 147 | a:visited { 148 | color:#743399; 149 | } 150 | a:active, 151 | a:hover { 152 | color: #ff4b33; 153 | } 154 | p, 155 | ul, 156 | ol, 157 | dd, 158 | pre, 159 | hr { 160 | margin-bottom:24px; 161 | } 162 | ul ul, 163 | ol ol, 164 | ul ol, 165 | ol ul { 166 | margin-bottom:0; 167 | } 168 | pre, 169 | kbd, 170 | tt, 171 | var { 172 | font-size: 15px; 173 | line-height: 21px; 174 | } 175 | code { 176 | font-size: 13px; 177 | } 178 | strong, 179 | b, 180 | dt, 181 | th { 182 | color: #000; 183 | } 184 | h1, 185 | h2, 186 | h3, 187 | h4, 188 | h5, 189 | h6 { 190 | color: #000; 191 | margin: 0 0 20px 0; 192 | line-height: 1.5em; 193 | font-weight: normal; 194 | } 195 | h1 { 196 | font-size: 2.4em; 197 | } 198 | h2 { 199 | font-size: 1.8em; 200 | } 201 | h3 { 202 | font-size: 1.4em; 203 | } 204 | h4 { 205 | font-size: 1.2em; 206 | } 207 | h5 { 208 | font-size: 1em; 209 | } 210 | h6 { 211 | font-size: 0.9em; 212 | } 213 | table { 214 | border: 1px solid #e7e7e7 !important; 215 | text-align: left; 216 | margin: 0 -1px 24px 0; 217 | width: 100%; 218 | border-collapse: collapse; 219 | border-spacing: 0; 220 | } 221 | tr th, 222 | thead th { 223 | border: none !important; 224 | color: #888; 225 | font-size: 12px; 226 | font-weight: bold; 227 | line-height: 18px; 228 | padding: 9px 24px; 229 | } 230 | tr td { 231 | border: none !important; 232 | border-top: 1px solid #e7e7e7 !important; 233 | padding: 6px 24px; 234 | } 235 | 236 | 237 | img { 238 | margin: 0; 239 | max-width: 640px; 240 | } 241 | .alignleft, 242 | img.alignleft { 243 | display: inline; 244 | float: left; 245 | margin-right: 24px; 246 | margin-top: 4px; 247 | } 248 | .alignright, 249 | img.alignright { 250 | display: inline; 251 | float: right; 252 | margin-left: 24px; 253 | margin-top: 4px; 254 | } 255 | .aligncenter, 256 | img.aligncenter { 257 | clear: both; 258 | display: block; 259 | margin-left: auto; 260 | margin-right: auto; 261 | } 262 | img.alignleft, 263 | img.alignright, 264 | img.aligncenter { 265 | margin-bottom: 12px; 266 | } 267 | .wp-caption { 268 | border: none; 269 | background: #f1f1f1; 270 | color: #888; 271 | font-size: 12px; 272 | line-height: 18px; 273 | text-align: center; 274 | margin-bottom: 20px; 275 | padding: 4px; 276 | -moz-border-radius: 0; 277 | -khtml-border-radius: 0; 278 | -webkit-border-radius: 0; 279 | border-radius: 0; 280 | } 281 | .wp-caption img { 282 | margin: 5px; 283 | } 284 | .wp-caption p.wp-caption-text { 285 | margin: 0 0 4px; 286 | } 287 | .wp-smiley { 288 | margin:0; 289 | } -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 41 | 42 | 43 | 44 | 46 | * tag of your theme, or you will break many plugins, which 47 | * generally use this hook to reference JavaScript files. 48 | */ 49 | 50 | wp_footer(); 51 | ?> 52 | 53 | 54 | -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- 1 | 26 | * add_action( 'after_setup_theme', 'my_child_theme_setup' ); 27 | * function my_child_theme_setup() { 28 | * // We are providing our own filter for excerpt_length (or using the unfiltered value) 29 | * remove_filter( 'excerpt_length', 'twentyten_excerpt_length' ); 30 | * ... 31 | * } 32 | * 33 | * 34 | * For more information on hooks, actions, and filters, see http://codex.wordpress.org/Plugin_API. 35 | * 36 | * @package WordPress 37 | * @subpackage Twenty_Ten 38 | * @since Twenty Ten 1.0 39 | */ 40 | 41 | /** 42 | * Set the content width based on the theme's design and stylesheet. 43 | * 44 | * Used to set the width of images and content. Should be equal to the width the theme 45 | * is designed for, generally via the style.css stylesheet. 46 | */ 47 | if ( ! isset( $content_width ) ) 48 | $content_width = 640; 49 | 50 | /** Tell WordPress to run twentyten_setup() when the 'after_setup_theme' hook is run. */ 51 | add_action( 'after_setup_theme', 'twentyten_setup' ); 52 | 53 | if ( ! function_exists( 'twentyten_setup' ) ): 54 | /** 55 | * Sets up theme defaults and registers support for various WordPress features. 56 | * 57 | * Note that this function is hooked into the after_setup_theme hook, which runs 58 | * before the init hook. The init hook is too late for some features, such as indicating 59 | * support post thumbnails. 60 | * 61 | * To override twentyten_setup() in a child theme, add your own twentyten_setup to your child theme's 62 | * functions.php file. 63 | * 64 | * @uses add_theme_support() To add support for post thumbnails and automatic feed links. 65 | * @uses register_nav_menus() To add support for navigation menus. 66 | * @uses add_custom_background() To add support for a custom background. 67 | * @uses add_editor_style() To style the visual editor. 68 | * @uses load_theme_textdomain() For translation/localization support. 69 | * @uses add_custom_image_header() To add support for a custom header. 70 | * @uses register_default_headers() To register the default custom header images provided with the theme. 71 | * @uses set_post_thumbnail_size() To set a custom post thumbnail size. 72 | * 73 | * @since Twenty Ten 1.0 74 | */ 75 | function twentyten_setup() { 76 | 77 | // This theme styles the visual editor with editor-style.css to match the theme style. 78 | add_editor_style(); 79 | 80 | // This theme uses post thumbnails 81 | add_theme_support( 'post-thumbnails' ); 82 | 83 | // Add default posts and comments RSS feed links to head 84 | add_theme_support( 'automatic-feed-links' ); 85 | 86 | // Make theme available for translation 87 | // Translations can be filed in the /languages/ directory 88 | load_theme_textdomain( 'twentyten', TEMPLATEPATH . '/languages' ); 89 | 90 | $locale = get_locale(); 91 | $locale_file = TEMPLATEPATH . "/languages/$locale.php"; 92 | if ( is_readable( $locale_file ) ) 93 | require_once( $locale_file ); 94 | 95 | // This theme uses wp_nav_menu() in one location. 96 | register_nav_menus( array( 97 | 'primary' => __( 'Primary Navigation', 'twentyten' ), 98 | ) ); 99 | 100 | // This theme allows users to set a custom background 101 | add_custom_background(); 102 | 103 | // Your changeable header business starts here 104 | define( 'HEADER_TEXTCOLOR', '' ); 105 | // No CSS, just IMG call. The %s is a placeholder for the theme template directory URI. 106 | define( 'HEADER_IMAGE', '%s/images/headers/path.jpg' ); 107 | 108 | // The height and width of your custom header. You can hook into the theme's own filters to change these values. 109 | // Add a filter to twentyten_header_image_width and twentyten_header_image_height to change these values. 110 | define( 'HEADER_IMAGE_WIDTH', apply_filters( 'twentyten_header_image_width', 940 ) ); 111 | define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'twentyten_header_image_height', 198 ) ); 112 | 113 | // We'll be using post thumbnails for custom header images on posts and pages. 114 | // We want them to be 940 pixels wide by 198 pixels tall. 115 | // Larger images will be auto-cropped to fit, smaller ones will be ignored. See header.php. 116 | set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true ); 117 | 118 | // Don't support text inside the header image. 119 | define( 'NO_HEADER_TEXT', true ); 120 | 121 | // Add a way for the custom header to be styled in the admin panel that controls 122 | // custom headers. See twentyten_admin_header_style(), below. 123 | add_custom_image_header( '', 'twentyten_admin_header_style' ); 124 | 125 | // ... and thus ends the changeable header business. 126 | 127 | // Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI. 128 | register_default_headers( array( 129 | 'berries' => array( 130 | 'url' => '%s/images/headers/berries.jpg', 131 | 'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg', 132 | /* translators: header image description */ 133 | 'description' => __( 'Berries', 'twentyten' ) 134 | ), 135 | 'cherryblossom' => array( 136 | 'url' => '%s/images/headers/cherryblossoms.jpg', 137 | 'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg', 138 | /* translators: header image description */ 139 | 'description' => __( 'Cherry Blossoms', 'twentyten' ) 140 | ), 141 | 'concave' => array( 142 | 'url' => '%s/images/headers/concave.jpg', 143 | 'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg', 144 | /* translators: header image description */ 145 | 'description' => __( 'Concave', 'twentyten' ) 146 | ), 147 | 'fern' => array( 148 | 'url' => '%s/images/headers/fern.jpg', 149 | 'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg', 150 | /* translators: header image description */ 151 | 'description' => __( 'Fern', 'twentyten' ) 152 | ), 153 | 'forestfloor' => array( 154 | 'url' => '%s/images/headers/forestfloor.jpg', 155 | 'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg', 156 | /* translators: header image description */ 157 | 'description' => __( 'Forest Floor', 'twentyten' ) 158 | ), 159 | 'inkwell' => array( 160 | 'url' => '%s/images/headers/inkwell.jpg', 161 | 'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg', 162 | /* translators: header image description */ 163 | 'description' => __( 'Inkwell', 'twentyten' ) 164 | ), 165 | 'path' => array( 166 | 'url' => '%s/images/headers/path.jpg', 167 | 'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg', 168 | /* translators: header image description */ 169 | 'description' => __( 'Path', 'twentyten' ) 170 | ), 171 | 'sunset' => array( 172 | 'url' => '%s/images/headers/sunset.jpg', 173 | 'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg', 174 | /* translators: header image description */ 175 | 'description' => __( 'Sunset', 'twentyten' ) 176 | ) 177 | ) ); 178 | } 179 | endif; 180 | 181 | if ( ! function_exists( 'twentyten_admin_header_style' ) ) : 182 | /** 183 | * Styles the header image displayed on the Appearance > Header admin panel. 184 | * 185 | * Referenced via add_custom_image_header() in twentyten_setup(). 186 | * 187 | * @since Twenty Ten 1.0 188 | */ 189 | function twentyten_admin_header_style() { 190 | ?> 191 | 202 | ' . __( 'Continue reading ', 'twentyten' ) . ''; 242 | } 243 | 244 | /** 245 | * Replaces "[...]" (appended to automatically generated excerpts) with an ellipsis and twentyten_continue_reading_link(). 246 | * 247 | * To override this in a child theme, remove the filter and add your own 248 | * function tied to the excerpt_more filter hook. 249 | * 250 | * @since Twenty Ten 1.0 251 | * @return string An ellipsis 252 | */ 253 | function twentyten_auto_excerpt_more( $more ) { 254 | return ' …' . twentyten_continue_reading_link(); 255 | } 256 | add_filter( 'excerpt_more', 'twentyten_auto_excerpt_more' ); 257 | 258 | /** 259 | * Adds a pretty "Continue Reading" link to custom post excerpts. 260 | * 261 | * To override this link in a child theme, remove the filter and add your own 262 | * function tied to the get_the_excerpt filter hook. 263 | * 264 | * @since Twenty Ten 1.0 265 | * @return string Excerpt with a pretty "Continue Reading" link 266 | */ 267 | function twentyten_custom_excerpt_more( $output ) { 268 | if ( has_excerpt() && ! is_attachment() ) { 269 | $output .= twentyten_continue_reading_link(); 270 | } 271 | return $output; 272 | } 273 | add_filter( 'get_the_excerpt', 'twentyten_custom_excerpt_more' ); 274 | 275 | /** 276 | * Remove inline styles printed when the gallery shortcode is used. 277 | * 278 | * Galleries are styled by the theme in Twenty Ten's style.css. 279 | * 280 | * @since Twenty Ten 1.0 281 | * @return string The gallery style filter, with the styles themselves removed. 282 | */ 283 | function twentyten_remove_gallery_css( $css ) { 284 | return preg_replace( "##s", '', $css ); 285 | } 286 | add_filter( 'gallery_style', 'twentyten_remove_gallery_css' ); 287 | 288 | if ( ! function_exists( 'twentyten_comment' ) ) : 289 | /** 290 | * Template for comments and pingbacks. 291 | * 292 | * To override this walker in a child theme without modifying the comments template 293 | * simply create your own twentyten_comment(), and that function will be used instead. 294 | * 295 | * Used as a callback by wp_list_comments() for displaying the comments. 296 | * 297 | * @since Twenty Ten 1.0 298 | */ 299 | function twentyten_comment( $comment, $args, $depth ) { 300 | $GLOBALS['comment'] = $comment; 301 | switch ( $comment->comment_type ) : 302 | case '' : 303 | ?> 304 |
  • id="li-comment-"> 305 |
    306 |
    307 | 308 | says:', 'twentyten' ), sprintf( '%s', get_comment_author_link() ) ); ?> 309 |
    310 | comment_approved == '0' ) : ?> 311 | 312 |
    313 | 314 | 315 | 321 | 322 |
    323 | 324 |
    325 | $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> 326 |
    327 |
    328 | 329 | 334 |
  • 335 |

    336 | __( 'Primary Widget Area', 'twentyten' ), 355 | 'id' => 'primary-widget-area', 356 | 'description' => __( 'The primary widget area', 'twentyten' ), 357 | 'before_widget' => '
  • ', 358 | 'after_widget' => '
  • ', 359 | 'before_title' => '

    ', 360 | 'after_title' => '

    ', 361 | ) ); 362 | 363 | // Area 2, located below the Primary Widget Area in the sidebar. Empty by default. 364 | register_sidebar( array( 365 | 'name' => __( 'Secondary Widget Area', 'twentyten' ), 366 | 'id' => 'secondary-widget-area', 367 | 'description' => __( 'The secondary widget area', 'twentyten' ), 368 | 'before_widget' => '
  • ', 369 | 'after_widget' => '
  • ', 370 | 'before_title' => '

    ', 371 | 'after_title' => '

    ', 372 | ) ); 373 | 374 | // Area 3, located in the footer. Empty by default. 375 | register_sidebar( array( 376 | 'name' => __( 'First Footer Widget Area', 'twentyten' ), 377 | 'id' => 'first-footer-widget-area', 378 | 'description' => __( 'The first footer widget area', 'twentyten' ), 379 | 'before_widget' => '
  • ', 380 | 'after_widget' => '
  • ', 381 | 'before_title' => '

    ', 382 | 'after_title' => '

    ', 383 | ) ); 384 | 385 | // Area 4, located in the footer. Empty by default. 386 | register_sidebar( array( 387 | 'name' => __( 'Second Footer Widget Area', 'twentyten' ), 388 | 'id' => 'second-footer-widget-area', 389 | 'description' => __( 'The second footer widget area', 'twentyten' ), 390 | 'before_widget' => '
  • ', 391 | 'after_widget' => '
  • ', 392 | 'before_title' => '

    ', 393 | 'after_title' => '

    ', 394 | ) ); 395 | 396 | // Area 5, located in the footer. Empty by default. 397 | register_sidebar( array( 398 | 'name' => __( 'Third Footer Widget Area', 'twentyten' ), 399 | 'id' => 'third-footer-widget-area', 400 | 'description' => __( 'The third footer widget area', 'twentyten' ), 401 | 'before_widget' => '
  • ', 402 | 'after_widget' => '
  • ', 403 | 'before_title' => '

    ', 404 | 'after_title' => '

    ', 405 | ) ); 406 | 407 | // Area 6, located in the footer. Empty by default. 408 | register_sidebar( array( 409 | 'name' => __( 'Fourth Footer Widget Area', 'twentyten' ), 410 | 'id' => 'fourth-footer-widget-area', 411 | 'description' => __( 'The fourth footer widget area', 'twentyten' ), 412 | 'before_widget' => '
  • ', 413 | 'after_widget' => '
  • ', 414 | 'before_title' => '

    ', 415 | 'after_title' => '

    ', 416 | ) ); 417 | } 418 | /** Register sidebars by running twentyten_widgets_init() on the widgets_init hook. */ 419 | add_action( 'widgets_init', 'twentyten_widgets_init' ); 420 | 421 | /** 422 | * Removes the default styles that are packaged with the Recent Comments widget. 423 | * 424 | * To override this in a child theme, remove the filter and optionally add your own 425 | * function tied to the widgets_init action hook. 426 | * 427 | * @since Twenty Ten 1.0 428 | */ 429 | function twentyten_remove_recent_comments_style() { 430 | global $wp_widget_factory; 431 | remove_action( 'wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' ) ); 432 | } 433 | add_action( 'widgets_init', 'twentyten_remove_recent_comments_style' ); 434 | 435 | 436 | 437 | if ( ! function_exists( 'twentyten_posted_in' ) ) : 438 | /** 439 | * Prints HTML with meta information for the current post (category, tags and permalink). 440 | * 441 | * @since Twenty Ten 1.0 442 | */ 443 | function twentyten_posted_in() { 444 | // Retrieves tag list of current post, separated by commas. 445 | $tag_list = get_the_tag_list( '', ', ' ); 446 | if ( $tag_list ) { 447 | $posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the permalink.', 'twentyten' ); 448 | } elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) { 449 | $posted_in = __( 'This entry was posted in %1$s. Bookmark the permalink.', 'twentyten' ); 450 | } else { 451 | $posted_in = __( 'Bookmark the permalink.', 'twentyten' ); 452 | } 453 | // Prints the string, replacing the placeholders. 454 | printf( 455 | $posted_in, 456 | get_the_category_list( ', ' ), 457 | $tag_list, 458 | get_permalink(), 459 | the_title_attribute( 'echo=0' ) 460 | ); 461 | } 462 | endif; 463 | 464 | 465 | 466 | 467 | /** 468 | * TwentyTen Five functions and definitions 469 | * 470 | * This additional code adds in HTML5 functionality to the TwentyTen theme. 471 | * You will still require the orginal functions.php (above) which has not 472 | * been altered. 473 | * 474 | * The code below overwrites or extends some of the TwentyTen functionality. 475 | * 476 | * For more information on see 477 | * http://www.smashingmagazine.com/2011/02/22/using-html5-to-transform-wordpress-twentyten-theme/ 478 | * 479 | * and 480 | * http://twentytenfive.com 481 | * 482 | * @package WordPress 483 | * @subpackage Twenty_Ten_Five 484 | * @since TwentyTen Five 1.0.1 485 | */ 486 | 487 | 488 | 489 | /** 490 | * Modernizr.js 491 | * 492 | * Load up modernizr.min.js using the WordPress wp_enqueue_script function 493 | * 494 | * @since TwentyTen Five 1.0.1 495 | */ 496 | 497 | wp_enqueue_script( 'modernizr', get_bloginfo('template_directory').'/js/modernizr-1.6.min.js'); 498 | 499 | 500 | /** 501 | * The TwentyTen Five Caption shortcode. 502 | * added by Richard Shepherd to include HTML5 goodness 503 | * 504 | * The supported attributes for the shortcode are 'id', 'align', 'width', and 505 | * 'caption'. 506 | * 507 | * @since TwentyTen Five 1.0 508 | */ 509 | 510 | add_shortcode('wp_caption', 'twentyten_img_caption_shortcode'); 511 | add_shortcode('caption', 'twentyten_img_caption_shortcode'); 512 | 513 | /** 514 | * Prints HTML with meta information for the current post—date/time and author. 515 | * 516 | * @since TwentyTen Five 1.0 517 | */ 518 | function twentyten_img_caption_shortcode($attr, $content = null) { 519 | 520 | extract(shortcode_atts(array( 521 | 'id' => '', 522 | 'align' => 'alignnone', 523 | 'width' => '', 524 | 'caption' => '' 525 | ), $attr)); 526 | 527 | if ( 1 > (int) $width || empty($caption) ) 528 | return $content; 529 | 530 | 531 | if ( $id ) $idtag = 'id="' . esc_attr($id) . '" '; 532 | $align = 'class="' . esc_attr($align) . '" '; 533 | 534 | return '
    ' 535 | . do_shortcode( $content ) . '
    ' . $caption . '
    '; 536 | } 537 | 538 | 539 | if ( ! function_exists( 'twentyten_posted_on' ) ) : 540 | /** 541 | * Prints HTML with meta information for the current post—date/time and author. 542 | * 543 | * @since TwentyTen Five 1.0 544 | */ 545 | function twentyten_posted_on() { 546 | printf( __( 'Posted on %2$s by %3$s', 'twentyten' ), 547 | 'meta-prep meta-prep-author', 548 | sprintf( '', 549 | get_permalink(), 550 | get_the_date('c'), 551 | get_the_date() 552 | ), 553 | sprintf( '%3$s', 554 | get_author_posts_url( get_the_author_meta( 'ID' ) ), 555 | sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ), 556 | get_the_author() 557 | ) 558 | ); 559 | } 560 | endif; 561 | 562 | 563 | /** 564 | * Customise the TwentyTen Five comments fields with HTML5 form elements 565 | * 566 | * Adds support for placeholder 567 | * required 568 | * type="email" 569 | * type="url" 570 | * 571 | * @since TwentyTen Five 1.0 572 | */ 573 | function twentytenfive_comments() { 574 | 575 | $req = get_option('require_name_email'); 576 | 577 | $fields = array( 578 | 'author' => '

    ' . ' ' . ( $req ? '*' : '' ) . 579 | '

    ', 580 | 581 | 'email' => '

    ' . ( $req ? '*' : '' ) . 582 | '

    ', 583 | 584 | 'url' => '

    ' . 585 | '

    ' 586 | 587 | ); 588 | return $fields; 589 | } 590 | 591 | 592 | function twentytenfive_commentfield() { 593 | 594 | $commentArea = '

    '; 595 | 596 | return $commentArea; 597 | 598 | } 599 | 600 | 601 | add_filter('comment_form_default_fields', 'twentytenfive_comments'); 602 | add_filter('comment_form_field_comment', 'twentytenfive_commentfield'); 603 | 604 | 605 | 606 | ?> -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 | section and everything up till
    6 | * 7 | * @package WordPress 8 | * @subpackage Twenty_Ten_Five 9 | * @since Twenty Ten Five 1.0 10 | */ 11 | ?> 12 | 13 | 14 | 15 | 16 | class="no-js"> 17 | 18 | 19 | <?php 20 | /* 21 | * Print the <title> tag based on what is being viewed. 22 | */ 23 | global $page, $paged; 24 | 25 | wp_title( '|', true, 'right' ); 26 | 27 | // Add the blog name. 28 | bloginfo( 'name' ); 29 | 30 | // Add the blog description for the home/front page. 31 | $site_description = get_bloginfo( 'description', 'display' ); 32 | if ( $site_description && ( is_home() || is_front_page() ) ) 33 | echo " | $site_description"; 34 | 35 | // Add a page number if necessary: 36 | if ( $paged >= 2 || $page >= 2 ) 37 | echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ); 38 | 39 | ?> 40 | 41 | 42 | 43 | 51 | * tag of your theme, or you will break many plugins, which 52 | * generally use this hook to add elements to such 53 | * as styles, scripts, and meta tags. 54 | */ 55 | wp_head(); 56 | ?> 57 | 58 | 59 | > 60 | 63 | 64 |
    65 |
    66 |
    67 | 89 | 90 | 96 |
    97 |
    98 | 99 |
    100 | -------------------------------------------------------------------------------- /images/headers/berries-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/berries-thumbnail.jpg -------------------------------------------------------------------------------- /images/headers/berries.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/berries.jpg -------------------------------------------------------------------------------- /images/headers/cherryblossoms-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/cherryblossoms-thumbnail.jpg -------------------------------------------------------------------------------- /images/headers/cherryblossoms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/cherryblossoms.jpg -------------------------------------------------------------------------------- /images/headers/concave-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/concave-thumbnail.jpg -------------------------------------------------------------------------------- /images/headers/concave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/concave.jpg -------------------------------------------------------------------------------- /images/headers/fern-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/fern-thumbnail.jpg -------------------------------------------------------------------------------- /images/headers/fern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/fern.jpg -------------------------------------------------------------------------------- /images/headers/forestfloor-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/forestfloor-thumbnail.jpg -------------------------------------------------------------------------------- /images/headers/forestfloor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/forestfloor.jpg -------------------------------------------------------------------------------- /images/headers/inkwell-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/inkwell-thumbnail.jpg -------------------------------------------------------------------------------- /images/headers/inkwell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/inkwell.jpg -------------------------------------------------------------------------------- /images/headers/path-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/path-thumbnail.jpg -------------------------------------------------------------------------------- /images/headers/path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/path.jpg -------------------------------------------------------------------------------- /images/headers/sunset-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/sunset-thumbnail.jpg -------------------------------------------------------------------------------- /images/headers/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/headers/sunset.jpg -------------------------------------------------------------------------------- /images/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/images/wordpress.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 17 | 18 |
    19 |
    20 | 21 | 28 |
    29 |
    30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /js/modernizr-1.6.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Modernizr v1.6 3 | * http://www.modernizr.com 4 | * 5 | * Developed by: 6 | * - Faruk Ates http://farukat.es/ 7 | * - Paul Irish http://paulirish.com/ 8 | * 9 | * Copyright (c) 2009-2010 10 | * Dual-licensed under the BSD or MIT licenses. 11 | * http://www.modernizr.com/license/ 12 | */ 13 | window.Modernizr=function(i,e,u){function s(a,b){return(""+a).indexOf(b)!==-1}function D(a,b){for(var c in a)if(j[a[c]]!==u&&(!b||b(a[c],E)))return true}function n(a,b){var c=a.charAt(0).toUpperCase()+a.substr(1);c=(a+" "+F.join(c+" ")+c).split(" ");return!!D(c,b)}function S(){f.input=function(a){for(var b=0,c=a.length;b7)};d.history=function(){return!!(i.history&&history.pushState)};d.draganddrop=function(){return o("drag")&& 20 | o("dragstart")&&o("dragenter")&&o("dragover")&&o("dragleave")&&o("dragend")&&o("drop")};d.websockets=function(){return"WebSocket"in i};d.rgba=function(){j.cssText="background-color:rgba(150,255,150,.5)";return s(j.backgroundColor,"rgba")};d.hsla=function(){j.cssText="background-color:hsla(120,40%,100%,.5)";return s(j.backgroundColor,"rgba")||s(j.backgroundColor,"hsla")};d.multiplebgs=function(){j.cssText="background:url(//:),url(//:),red url(//:)";return/(url\s*\(.*?){3}/.test(j.background)};d.backgroundsize= 21 | function(){return n("backgroundSize")};d.borderimage=function(){return n("borderImage")};d.borderradius=function(){return n("borderRadius","",function(a){return s(a,"orderRadius")})};d.boxshadow=function(){return n("boxShadow")};d.textshadow=function(){return e.createElement("div").style.textShadow===""};d.opacity=function(){var a=q.join("opacity:.5;")+"";j.cssText=a;return s(j.opacity,"0.5")};d.cssanimations=function(){return n("animationName")};d.csscolumns=function(){return n("columnCount")};d.cssgradients= 22 | function(){var a=("background-image:"+q.join("gradient(linear,left top,right bottom,from(#9f9),to(white));background-image:")+q.join("linear-gradient(left top,#9f9, white);background-image:")).slice(0,-17);j.cssText=a;return s(j.backgroundImage,"gradient")};d.cssreflections=function(){return n("boxReflect")};d.csstransforms=function(){return!!D(["transformProperty","WebkitTransform","MozTransform","OTransform","msTransform"])};d.csstransforms3d=function(){var a=!!D(["perspectiveProperty","WebkitPerspective", 23 | "MozPerspective","OPerspective","msPerspective"]);if(a)a=Q("@media ("+q.join("transform-3d),(")+"modernizr)");return a};d.csstransitions=function(){return n("transitionProperty")};d.fontface=function(){var a,b=e.head||e.getElementsByTagName("head")[0]||l,c=e.createElement("style"),k=e.implementation||{hasFeature:function(){return false}};c.type="text/css";b.insertBefore(c,b.firstChild);a=c.sheet||c.styleSheet;b=k.hasFeature("CSS2","")?function(g){if(!(a&&g))return false;var r=false;try{a.insertRule(g, 24 | 0);r=!/unknown/i.test(a.cssRules[0].cssText);a.deleteRule(a.cssRules.length-1)}catch(x){}return r}:function(g){if(!(a&&g))return false;a.cssText=g;return a.cssText.length!==0&&!/unknown/i.test(a.cssText)&&a.cssText.replace(/\r+|\n+/g,"").indexOf(g.split(" ")[0])===0};f._fontfaceready=function(g){g(f.fontface)};return b('@font-face { font-family: "font"; src: "font.ttf"; }')};d.video=function(){var a=e.createElement("video"),b=!!a.canPlayType;if(b){b=new Boolean(b);b.ogg=a.canPlayType('video/ogg; codecs="theora"'); 25 | b.h264=a.canPlayType('video/mp4; codecs="avc1.42E01E"')||a.canPlayType('video/mp4; codecs="avc1.42E01E, mp4a.40.2"');b.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"')}return b};d.audio=function(){var a=e.createElement("audio"),b=!!a.canPlayType;if(b){b=new Boolean(b);b.ogg=a.canPlayType('audio/ogg; codecs="vorbis"');b.mp3=a.canPlayType("audio/mpeg;");b.wav=a.canPlayType('audio/wav; codecs="1"');b.m4a=a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;")}return b};d.localstorage=function(){try{return"localStorage"in 26 | i&&i.localStorage!==null}catch(a){return false}};d.sessionstorage=function(){try{return"sessionStorage"in i&&i.sessionStorage!==null}catch(a){return false}};d.webWorkers=function(){return!!i.Worker};d.applicationcache=function(){return!!i.applicationCache};d.svg=function(){return!!e.createElementNS&&!!e.createElementNS(v.svg,"svg").createSVGRect};d.inlinesvg=function(){var a=document.createElement("div");a.innerHTML="";return(a.firstChild&&a.firstChild.namespaceURI)==v.svg};d.smil=function(){return!!e.createElementNS&& 27 | /SVG/.test(O.call(e.createElementNS(v.svg,"animate")))};d.svgclippaths=function(){return!!e.createElementNS&&/SVG/.test(O.call(e.createElementNS(v.svg,"clipPath")))};for(var H in d)if(R(d,H)){w=H.toLowerCase();f[w]=d[H]();P.push((f[w]?"":"no-")+w)}f.input||S();f.crosswindowmessaging=f.postmessage;f.historymanagement=f.history;f.addTest=function(a,b){a=a.toLowerCase();if(!f[a]){b=!!b();l.className+=" "+(b?"":"no-")+a;f[a]=b;return f}};j.cssText="";E=h=null;i.attachEvent&&function(){var a=e.createElement("div"); 28 | a.innerHTML="";return a.childNodes.length!==1}()&&function(a,b){function c(p){for(var m=-1;++m, 2010. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Twenty Ten 1.1\n" 10 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/twentyten\n" 11 | "POT-Creation-Date: 2010-07-14 16:21+0000\n" 12 | "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 19 | 20 | #: 404.php:16 loop.php:33 21 | msgid "Not Found" 22 | msgstr "" 23 | 24 | #: 404.php:18 25 | msgid "" 26 | "Apologies, but the page you requested could not be found. Perhaps searching " 27 | "will help." 28 | msgstr "" 29 | 30 | #: archive.php:33 31 | #, php-format 32 | msgid "Daily Archives: %s" 33 | msgstr "" 34 | 35 | #: archive.php:35 36 | #, php-format 37 | msgid "Monthly Archives: %s" 38 | msgstr "" 39 | 40 | #: archive.php:37 41 | #, php-format 42 | msgid "Yearly Archives: %s" 43 | msgstr "" 44 | 45 | #: archive.php:39 46 | msgid "Blog Archives" 47 | msgstr "" 48 | 49 | #: attachment.php:18 50 | #, php-format 51 | msgid "Return to %s" 52 | msgstr "" 53 | 54 | #. translators: %s - title of parent post 55 | #: attachment.php:20 56 | #, php-format 57 | msgid " %s" 58 | msgstr "" 59 | 60 | #: attachment.php:29 61 | #, php-format 62 | msgid "By %2$s" 63 | msgstr "" 64 | 65 | #: attachment.php:33 functions.php:451 66 | #, php-format 67 | msgid "View all posts by %s" 68 | msgstr "" 69 | 70 | #: attachment.php:40 71 | #, php-format 72 | msgid "Published %2$s" 73 | msgstr "" 74 | 75 | #: attachment.php:50 76 | #, php-format 77 | msgid "Full size is %s pixels" 78 | msgstr "" 79 | 80 | #: attachment.php:53 81 | msgid "Link to full-size image" 82 | msgstr "" 83 | 84 | #: attachment.php:60 attachment.php:107 loop.php:95 loop.php:118 loop.php:160 85 | #: onecolumn-page.php:27 page.php:32 single.php:53 86 | msgid "Edit" 87 | msgstr "" 88 | 89 | #: attachment.php:100 functions.php:241 loop.php:110 loop.php:138 90 | msgid "Continue reading " 91 | msgstr "" 92 | 93 | #: attachment.php:101 loop.php:139 onecolumn-page.php:26 page.php:31 94 | #: single.php:31 95 | msgid "Pages:" 96 | msgstr "" 97 | 98 | #: author.php:27 99 | #, php-format 100 | msgid "Author Archives: %s" 101 | msgstr "" 102 | 103 | #: author.php:37 single.php:40 104 | #, php-format 105 | msgid "About %s" 106 | msgstr "" 107 | 108 | #: category.php:16 109 | #, php-format 110 | msgid "Category Archives: %s" 111 | msgstr "" 112 | 113 | #: comments.php:18 114 | msgid "" 115 | "This post is password protected. Enter the password to view any comments." 116 | msgstr "" 117 | 118 | #: comments.php:35 119 | #, php-format 120 | msgid "One Response to %2$s" 121 | msgid_plural "%1$s Responses to %2$s" 122 | msgstr[0] "" 123 | msgstr[1] "" 124 | 125 | #: comments.php:41 comments.php:60 126 | msgid " Older Comments" 127 | msgstr "" 128 | 129 | #: comments.php:42 comments.php:61 130 | msgid "Newer Comments " 131 | msgstr "" 132 | 133 | #: comments.php:72 134 | msgid "Comments are closed." 135 | msgstr "" 136 | 137 | #. #-#-#-#-# twentyten.pot (Twenty Ten 1.1) #-#-#-#-# 138 | #. Theme URI of the plugin/theme 139 | #: footer.php:33 140 | msgid "http://wordpress.org/" 141 | msgstr "" 142 | 143 | #: footer.php:34 144 | msgid "Semantic Personal Publishing Platform" 145 | msgstr "" 146 | 147 | #: footer.php:35 148 | #, php-format 149 | msgid "Proudly powered by %s." 150 | msgstr "" 151 | 152 | #: functions.php:97 153 | msgid "Primary Navigation" 154 | msgstr "" 155 | 156 | #. translators: header image description 157 | #: functions.php:133 158 | msgid "Berries" 159 | msgstr "" 160 | 161 | #. translators: header image description 162 | #: functions.php:139 163 | msgid "Cherry Blossoms" 164 | msgstr "" 165 | 166 | #. translators: header image description 167 | #: functions.php:145 168 | msgid "Concave" 169 | msgstr "" 170 | 171 | #. translators: header image description 172 | #: functions.php:151 173 | msgid "Fern" 174 | msgstr "" 175 | 176 | #. translators: header image description 177 | #: functions.php:157 178 | msgid "Forest Floor" 179 | msgstr "" 180 | 181 | #. translators: header image description 182 | #: functions.php:163 183 | msgid "Inkwell" 184 | msgstr "" 185 | 186 | #. translators: header image description 187 | #: functions.php:169 188 | msgid "Path" 189 | msgstr "" 190 | 191 | #. translators: header image description 192 | #: functions.php:175 193 | msgid "Sunset" 194 | msgstr "" 195 | 196 | #: functions.php:308 197 | #, php-format 198 | msgid "%s says:" 199 | msgstr "" 200 | 201 | #: functions.php:311 202 | msgid "Your comment is awaiting moderation." 203 | msgstr "" 204 | 205 | #. translators: 1: date, 2: time 206 | #: functions.php:318 207 | #, php-format 208 | msgid "%1$s at %2$s" 209 | msgstr "" 210 | 211 | #: functions.php:318 functions.php:335 212 | msgid "(Edit)" 213 | msgstr "" 214 | 215 | #: functions.php:335 216 | msgid "Pingback:" 217 | msgstr "" 218 | 219 | #: functions.php:354 220 | msgid "Primary Widget Area" 221 | msgstr "" 222 | 223 | #: functions.php:356 224 | msgid "The primary widget area" 225 | msgstr "" 226 | 227 | #: functions.php:365 228 | msgid "Secondary Widget Area" 229 | msgstr "" 230 | 231 | #: functions.php:367 232 | msgid "The secondary widget area" 233 | msgstr "" 234 | 235 | #: functions.php:376 236 | msgid "First Footer Widget Area" 237 | msgstr "" 238 | 239 | #: functions.php:378 240 | msgid "The first footer widget area" 241 | msgstr "" 242 | 243 | #: functions.php:387 244 | msgid "Second Footer Widget Area" 245 | msgstr "" 246 | 247 | #: functions.php:389 248 | msgid "The second footer widget area" 249 | msgstr "" 250 | 251 | #: functions.php:398 252 | msgid "Third Footer Widget Area" 253 | msgstr "" 254 | 255 | #: functions.php:400 256 | msgid "The third footer widget area" 257 | msgstr "" 258 | 259 | #: functions.php:409 260 | msgid "Fourth Footer Widget Area" 261 | msgstr "" 262 | 263 | #: functions.php:411 264 | msgid "The fourth footer widget area" 265 | msgstr "" 266 | 267 | #: functions.php:442 268 | #, php-format 269 | msgid "" 270 | "Posted on %2$s by %3$s" 272 | msgstr "" 273 | 274 | #: functions.php:468 275 | #, php-format 276 | msgid "" 277 | "This entry was posted in %1$s and tagged %2$s. Bookmark the permalink." 279 | msgstr "" 280 | 281 | #: functions.php:470 282 | #, php-format 283 | msgid "" 284 | "This entry was posted in %1$s. Bookmark the permalink." 286 | msgstr "" 287 | 288 | #: functions.php:472 289 | #, php-format 290 | msgid "" 291 | "Bookmark the permalink." 293 | msgstr "" 294 | 295 | #: header.php:33 296 | #, php-format 297 | msgid "Page %s" 298 | msgstr "" 299 | 300 | #: header.php:83 301 | msgid "Skip to content" 302 | msgstr "" 303 | 304 | #: loop.php:25 loop.php:173 305 | msgid " Older posts" 306 | msgstr "" 307 | 308 | #: loop.php:26 loop.php:174 309 | msgid "Newer posts " 310 | msgstr "" 311 | 312 | #: loop.php:35 313 | msgid "" 314 | "Apologies, but no results were found for the requested archive. Perhaps " 315 | "searching will help find a related post." 316 | msgstr "" 317 | 318 | #: loop.php:60 loop.php:92 319 | msgctxt "gallery category slug" 320 | msgid "gallery" 321 | msgstr "" 322 | 323 | #: loop.php:62 loop.php:83 loop.php:126 324 | #, php-format 325 | msgid "Permalink to %s" 326 | msgstr "" 327 | 328 | #: loop.php:82 329 | #, php-format 330 | msgid "This gallery contains %2$s photos." 331 | msgstr "" 332 | 333 | #: loop.php:92 334 | msgid "View posts in the Gallery category" 335 | msgstr "" 336 | 337 | #: loop.php:92 338 | msgid "More Galleries" 339 | msgstr "" 340 | 341 | #: loop.php:94 loop.php:117 loop.php:159 342 | msgid "Leave a comment" 343 | msgstr "" 344 | 345 | #: loop.php:94 loop.php:117 loop.php:159 346 | msgid "1 Comment" 347 | msgstr "" 348 | 349 | #: loop.php:94 loop.php:117 loop.php:159 350 | msgid "% Comments" 351 | msgstr "" 352 | 353 | #: loop.php:101 354 | msgctxt "asides category slug" 355 | msgid "asides" 356 | msgstr "" 357 | 358 | #: loop.php:146 359 | #, php-format 360 | msgid "Posted in %2$s" 361 | msgstr "" 362 | 363 | #: loop.php:155 364 | #, php-format 365 | msgid "Tagged %2$s" 366 | msgstr "" 367 | 368 | #: search.php:16 369 | #, php-format 370 | msgid "Search Results for: %s" 371 | msgstr "" 372 | 373 | #: search.php:26 374 | msgid "Nothing Found" 375 | msgstr "" 376 | 377 | #: search.php:28 378 | msgid "" 379 | "Sorry, but nothing matched your search criteria. Please try again with some " 380 | "different keywords." 381 | msgstr "" 382 | 383 | #: sidebar.php:27 384 | msgid "Archives" 385 | msgstr "" 386 | 387 | #: sidebar.php:34 388 | msgid "Meta" 389 | msgstr "" 390 | 391 | #: single.php:18 single.php:58 392 | msgctxt "Previous post link" 393 | msgid "←" 394 | msgstr "" 395 | 396 | #: single.php:19 single.php:59 397 | msgctxt "Next post link" 398 | msgid "→" 399 | msgstr "" 400 | 401 | #: single.php:44 402 | #, php-format 403 | msgid "View all posts by %s " 404 | msgstr "" 405 | 406 | #: tag.php:16 407 | #, php-format 408 | msgid "Tag Archives: %s" 409 | msgstr "" 410 | 411 | #. Theme Name of the plugin/theme 412 | msgid "Twenty Ten" 413 | msgstr "" 414 | 415 | #. Description of the plugin/theme 416 | msgid "" 417 | "The 2010 theme for WordPress is stylish, customizable, simple, and readable " 418 | "-- make it yours with a custom menu, header image, and background. Twenty " 419 | "Ten supports six widgetized areas (two in the sidebar, four in the footer) " 420 | "and featured images (thumbnails for gallery posts and custom header images " 421 | "for posts and pages). It includes stylesheets for print and the admin Visual " 422 | "Editor, special styles for posts in the \"Asides\" and \"Gallery\" " 423 | "categories, and has an optional one-column page template that removes the " 424 | "sidebar." 425 | msgstr "" 426 | 427 | #. Author of the plugin/theme 428 | msgid "the WordPress team" 429 | msgstr "" 430 | 431 | #. Tags of the plugin/theme 432 | msgid "" 433 | "black, blue, white, two-columns, fixed-width, custom-header, custom-" 434 | "background, threaded-comments, sticky-post, translation-ready, microformats, " 435 | "rtl-language-support, editor-style" 436 | msgstr "" 437 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc. 5 | 51 Franklin St, Fifth Floor, Boston, MA 02110, USA 6 | 7 | Everyone is permitted to copy and distribute verbatim copies 8 | of this license document, but changing it is not allowed. 9 | 10 | Preamble 11 | 12 | The licenses for most software are designed to take away your 13 | freedom to share and change it. By contrast, the GNU General Public 14 | License is intended to guarantee your freedom to share and change free 15 | software--to make sure the software is free for all its users. This 16 | General Public License applies to most of the Free Software 17 | Foundation's software and to any other program whose authors commit to 18 | using it. (Some other Free Software Foundation software is covered by 19 | the GNU Library General Public License instead.) You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | this service if you wish), that you receive source code or can get it 26 | if you want it, that you can change the software or use pieces of it 27 | in new free programs; and that you know you can do these things. 28 | 29 | To protect your rights, we need to make restrictions that forbid 30 | anyone to deny you these rights or to ask you to surrender the rights. 31 | These restrictions translate to certain responsibilities for you if you 32 | distribute copies of the software, or if you modify it. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must give the recipients all the rights that 36 | you have. You must make sure that they, too, receive or can get the 37 | source code. And you must show them these terms so they know their 38 | rights. 39 | 40 | We protect your rights with two steps: (1) copyright the software, and 41 | (2) offer you this license which gives you legal permission to copy, 42 | distribute and/or modify the software. 43 | 44 | Also, for each author's protection and ours, we want to make certain 45 | that everyone understands that there is no warranty for this free 46 | software. If the software is modified by someone else and passed on, we 47 | want its recipients to know that what they have is not the original, so 48 | that any problems introduced by others will not reflect on the original 49 | authors' reputations. 50 | 51 | Finally, any free program is threatened constantly by software 52 | patents. We wish to avoid the danger that redistributors of a free 53 | program will individually obtain patent licenses, in effect making the 54 | program proprietary. To prevent this, we have made it clear that any 55 | patent must be licensed for everyone's free use or not licensed at all. 56 | 57 | The precise terms and conditions for copying, distribution and 58 | modification follow. 59 | 60 | GNU GENERAL PUBLIC LICENSE 61 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 62 | 63 | 0. This License applies to any program or other work which contains 64 | a notice placed by the copyright holder saying it may be distributed 65 | under the terms of this General Public License. The "Program", below, 66 | refers to any such program or work, and a "work based on the Program" 67 | means either the Program or any derivative work under copyright law: 68 | that is to say, a work containing the Program or a portion of it, 69 | either verbatim or with modifications and/or translated into another 70 | language. (Hereinafter, translation is included without limitation in 71 | the term "modification".) Each licensee is addressed as "you". 72 | 73 | Activities other than copying, distribution and modification are not 74 | covered by this License; they are outside its scope. The act of 75 | running the Program is not restricted, and the output from the Program 76 | is covered only if its contents constitute a work based on the 77 | Program (independent of having been made by running the Program). 78 | Whether that is true depends on what the Program does. 79 | 80 | 1. You may copy and distribute verbatim copies of the Program's 81 | source code as you receive it, in any medium, provided that you 82 | conspicuously and appropriately publish on each copy an appropriate 83 | copyright notice and disclaimer of warranty; keep intact all the 84 | notices that refer to this License and to the absence of any warranty; 85 | and give any other recipients of the Program a copy of this License 86 | along with the Program. 87 | 88 | You may charge a fee for the physical act of transferring a copy, and 89 | you may at your option offer warranty protection in exchange for a fee. 90 | 91 | 2. You may modify your copy or copies of the Program or any portion 92 | of it, thus forming a work based on the Program, and copy and 93 | distribute such modifications or work under the terms of Section 1 94 | above, provided that you also meet all of these conditions: 95 | 96 | a) You must cause the modified files to carry prominent notices 97 | stating that you changed the files and the date of any change. 98 | 99 | b) You must cause any work that you distribute or publish, that in 100 | whole or in part contains or is derived from the Program or any 101 | part thereof, to be licensed as a whole at no charge to all third 102 | parties under the terms of this License. 103 | 104 | c) If the modified program normally reads commands interactively 105 | when run, you must cause it, when started running for such 106 | interactive use in the most ordinary way, to print or display an 107 | announcement including an appropriate copyright notice and a 108 | notice that there is no warranty (or else, saying that you provide 109 | a warranty) and that users may redistribute the program under 110 | these conditions, and telling the user how to view a copy of this 111 | License. (Exception: if the Program itself is interactive but 112 | does not normally print such an announcement, your work based on 113 | the Program is not required to print an announcement.) 114 | 115 | These requirements apply to the modified work as a whole. If 116 | identifiable sections of that work are not derived from the Program, 117 | and can be reasonably considered independent and separate works in 118 | themselves, then this License, and its terms, do not apply to those 119 | sections when you distribute them as separate works. But when you 120 | distribute the same sections as part of a whole which is a work based 121 | on the Program, the distribution of the whole must be on the terms of 122 | this License, whose permissions for other licensees extend to the 123 | entire whole, and thus to each and every part regardless of who wrote it. 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | -------------------------------------------------------------------------------- /loop.php: -------------------------------------------------------------------------------- 1 | get_template_part( 'loop', 'index' ); 15 | * 16 | * @package WordPress 17 | * @subpackage Twenty_Ten_Five 18 | * @since Twenty Ten Five 1.0 19 | */ 20 | ?> 21 | 22 | 23 | max_num_pages > 1 ) : ?> 24 | 28 | 29 | 30 | 31 | 32 |
    33 |
    34 |

    35 |
    36 | 37 |
    38 |

    39 | 40 |
    41 |
    42 | 43 | 44 | 59 | 60 | 61 | 62 | 63 | 64 |
    > 65 |
    66 |

    67 | 68 | 71 |
    72 | 73 |
    74 | 75 | 76 | 77 | 86 |

    %2$s photos.', 'twentyten' ), 87 | 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"', 88 | $total_images 89 | ); ?>

    90 | 91 | 92 | 93 |
    94 | 95 |
    96 | 97 | | 98 | 99 | | ', '' ); ?> 100 |
    101 |
    102 | 103 | 104 | 105 | 106 |
    > 107 | 108 | 109 |
    110 | 111 |
    112 | 113 |
    114 | →', 'twentyten' ) ); ?> 115 |
    116 | 117 | 118 |
    119 | 120 | | 121 | 122 | | ', '' ); ?> 123 |
    124 |
    125 | 126 | 127 | 128 | 129 |
    > 130 |
    131 |

    132 | 133 | 136 |
    137 | 138 | 139 |
    140 | 141 |
    142 | 143 |
    144 | →', 'twentyten' ) ); ?> 145 | '' ) ); ?> 146 |
    147 | 148 | 149 |
    150 | 151 | 152 | Posted in %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?> 153 | 154 | | 155 | 156 | 160 | 161 | Tagged %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> 162 | 163 | | 164 | 165 | 166 | | ', '' ); ?> 167 |
    168 |
    169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | max_num_pages > 1 ) : ?> 178 | 182 | 183 | -------------------------------------------------------------------------------- /onecolumn-page.php: -------------------------------------------------------------------------------- 1 | 16 | 17 |
    18 |
    19 | 20 | 21 | 22 |
    > 23 |

    24 |
    25 | 26 | '' ) ); ?> 27 | ', '' ); ?> 28 |
    29 |
    30 | 31 | 32 | 33 | 34 | 35 |
    36 |
    37 | 38 | 39 | -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- 1 | 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 | -------------------------------------------------------------------------------- /rtl.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: Twenty Ten 3 | */ 4 | 5 | 6 | /* 7 | RTL Basics 8 | */ 9 | 10 | 11 | body { 12 | direction:rtl; 13 | unicode-bidi:embed; 14 | } 15 | 16 | 17 | /* 18 | LAYOUT: Two-Column (Right) 19 | DESCRIPTION: Two-column fixed layout with one sidebar right of content 20 | */ 21 | 22 | #container { 23 | float: right; 24 | margin: 0 0 0 -240px; 25 | } 26 | #content { 27 | margin: 0 20px 36px 280px; 28 | } 29 | #primary, 30 | #secondary { 31 | float: left; 32 | } 33 | #secondary { 34 | clear: left; 35 | } 36 | 37 | 38 | /* =Fonts 39 | -------------------------------------------------------------- */ 40 | body, 41 | input, 42 | textarea, 43 | .page-title span, 44 | .pingback a.url, 45 | h3#comments-title, 46 | h3#reply-title, 47 | #access .menu, 48 | #access div.menu ul, 49 | #cancel-comment-reply-link, 50 | .form-allowed-tags, 51 | #site-info, 52 | #site-title, 53 | #wp-calendar, 54 | .comment-meta, 55 | .comment-body tr th, 56 | .comment-body thead th, 57 | .entry-content label, 58 | .entry-content tr th, 59 | .entry-content thead th, 60 | .entry-meta, 61 | .entry-title, 62 | .entry-utility, 63 | #respond label, 64 | .navigation, 65 | .page-title, 66 | .pingback p, 67 | .reply, 68 | .widget-title, 69 | input[type=submit] { 70 | font-family: Arial, Tahoma, sans-serif; 71 | } 72 | 73 | /* =Structure 74 | -------------------------------------------------------------- */ 75 | 76 | /* The main theme structure */ 77 | #footer-widget-area .widget-area { 78 | float: right; 79 | margin-left: 20px; 80 | margin-right: 0; 81 | } 82 | #footer-widget-area #fourth { 83 | margin-left: 0; 84 | } 85 | #site-info { 86 | float: right; 87 | } 88 | #site-generator { 89 | float: left; 90 | } 91 | 92 | 93 | /* =Global Elements 94 | -------------------------------------------------------------- */ 95 | 96 | /* Text elements */ 97 | ul { 98 | margin: 0 1.5em 18px 0; 99 | } 100 | blockquote { 101 | font-style: normal; 102 | } 103 | 104 | /* Text meant only for screen readers */ 105 | .screen-reader-text { 106 | left: auto; 107 | text-indent:-9000px; 108 | overflow:hidden; 109 | } 110 | 111 | 112 | /* =Header 113 | -------------------------------------------------------------- */ 114 | 115 | #site-title { 116 | float: right; 117 | } 118 | #site-description { 119 | clear: left; 120 | float: left; 121 | font-style: normal; 122 | } 123 | 124 | /* =Menu 125 | -------------------------------------------------------------- */ 126 | 127 | #access { 128 | float:right; 129 | } 130 | 131 | #access .menu-header, 132 | div.menu { 133 | margin-right: 12px; 134 | margin-left: 0; 135 | } 136 | 137 | #access .menu-header li, 138 | div.menu li{ 139 | float:right; 140 | } 141 | 142 | #access ul ul { 143 | left:auto; 144 | right:0; 145 | float:right; 146 | } 147 | #access ul ul ul { 148 | left:auto; 149 | right:100%; 150 | } 151 | 152 | /* =Content 153 | -------------------------------------------------------------- */ 154 | 155 | #content table { 156 | text-align: right; 157 | margin: 0 0 24px -1px; 158 | } 159 | .page-title span { 160 | font-style:normal; 161 | } 162 | .entry-title, 163 | .entry-meta { 164 | clear: right; 165 | float: right; 166 | margin-left: 68px; 167 | margin-right: 0; 168 | } 169 | 170 | .entry-content input.file, 171 | .entry-content input.button { 172 | margin-left: 24px; 173 | margin-right:0; 174 | } 175 | .entry-content blockquote.left { 176 | float: right; 177 | margin-right: 0; 178 | margin-left: 24px; 179 | text-align: left; 180 | } 181 | .entry-content blockquote.right { 182 | float: left; 183 | margin-right: 24px; 184 | margin-left: 0; 185 | text-align: right; 186 | } 187 | #entry-author-info #author-avatar { 188 | float: right; 189 | margin: 0 0 0 -104px; 190 | } 191 | #entry-author-info #author-description { 192 | float: right; 193 | margin: 0 104px 0 0; 194 | } 195 | 196 | /* Gallery listing 197 | -------------------------------------------------------------- */ 198 | 199 | .category-gallery .gallery-thumb { 200 | float: right; 201 | margin-left:20px; 202 | margin-right:0; 203 | } 204 | 205 | 206 | /* Images 207 | -------------------------------------------------------------- */ 208 | 209 | #content .gallery .gallery-caption { 210 | margin-right: 0; 211 | } 212 | 213 | #content .gallery .gallery-item { 214 | float: right; 215 | } 216 | 217 | /* =Navigation 218 | -------------------------------------------------------------- */ 219 | .nav-previous { 220 | float: right; 221 | } 222 | .nav-next { 223 | float: left; 224 | text-align:left; 225 | } 226 | 227 | /* =Comments 228 | -------------------------------------------------------------- */ 229 | 230 | .commentlist li.comment { 231 | padding: 0 56px 0 0; 232 | } 233 | .commentlist .avatar { 234 | right: 0; 235 | left: auto; 236 | } 237 | .comment-author .says, #comments .pingback .url { 238 | font-style: normal; 239 | } 240 | 241 | /* Comments form */ 242 | .children #respond { 243 | margin: 0 0 0 48px; 244 | } 245 | 246 | /* =Widget Areas 247 | -------------------------------------------------------------- */ 248 | 249 | .widget-area ul { 250 | margin-right: 0; 251 | } 252 | .widget-area ul ul { 253 | margin-right: 1.3em; 254 | margin-left: 0; 255 | } 256 | #wp-calendar caption { 257 | text-align: right; 258 | } 259 | #wp-calendar tfoot #next { 260 | text-align: left; 261 | } 262 | 263 | /* Main sidebars */ 264 | #main .widget-area ul { 265 | margin-right: 0; 266 | padding: 0 0 0 20px; 267 | } 268 | #main .widget-area ul ul { 269 | margin-right: 1.3em; 270 | margin-left: 0; 271 | } 272 | 273 | /* =Footer 274 | -------------------------------------------------------------- */ 275 | #site-generator { 276 | font-style:normal; 277 | } 278 | #site-generator a { 279 | background-position: right center; 280 | padding-right: 20px; 281 | padding-left: 0; 282 | } -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardshepherd/TwentyTenFive/ed29e68477c2593521fb24f765193cfe9b3bfe1a/screenshot.png -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
    13 |
    14 | 15 | 16 |
    17 |

    ' . get_search_query() . '' ); ?>

    18 |
    19 | 26 | 27 |
    28 |

    29 |
    30 |

    31 | 32 |
    33 |
    34 | 35 |
    36 |
    37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /sidebar-footer.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 25 | 26 | 61 | -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 45 | 46 | 49 | 50 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
    13 |
    14 | 15 | 16 | 17 | 21 | 22 |
    > 23 |
    24 |

    25 | 26 | 29 |
    30 | 31 |
    32 | 33 | '' ) ); ?> 34 |
    35 | 36 | 37 | 51 | 52 | 53 |
    54 | 55 | ', '' ); ?> 56 |
    57 |
    58 | 59 | 63 | 64 | 65 | 66 | 67 | 68 |
    69 |
    70 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: TwentyTen Five 3 | Theme URI: http://richardshepherd.com 4 | Description: A HTML5 version of the TwentyTen default theme for WordPress. 5 | Author: Richard Shepherd 6 | Version: 1.0 7 | Tags: html5, black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style 8 | */ 9 | 10 | /* Grab the original TwentyTen styles */ 11 | /* This stylesheet merely overrides a few and brings HTML5 to the masses! */ 12 | @import url(css/twentyten-style.css); 13 | 14 | /* A message for users with JavaScript turned off */ 15 | noscript strong {display: block; font-size: 18px; line-height:1.5em; padding: 5px 0; background-color: #ccc; color: #a00; text-align: center; } 16 | 17 | /* HTML5 elements need display: block */ 18 | header,nav,section,article,aside,figure,footer { display:block; } 19 | 20 | /* Where we're reassigning div's to HTML5 elements we */ 21 | /* need to copy across their CSS styles like so... */ 22 | .header { padding:30px 0 0; } 23 | footer { margin-bottom:20px; clear:both; width:100%; } 24 | 25 | h2#site-description { font-size: 12px;} 26 | 27 | #content figure { background:#f1f1f1; line-height:18px; margin-bottom:20px; padding:4px; text-align:center; } 28 | #content figure img { margin:5px 5px 0; } 29 | #content figure figcaption { color:#888; font-size:12px; margin:5px; font-family:"Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif; } 30 | 31 | nav#access { font-family:"Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif; margin:0 auto; width:940px; background:#000; display:block; float:left; margin:0 auto; width:940px; -webkit-text-size-adjust:120%; } 32 | nav .menu-header { font-size:13px; margin-left:12px; width:928px; } 33 | nav .menu-header ul { list-style:none; margin:0; } 34 | nav .menu-header li { float:left; position:relative; } 35 | nav a:visited,nav a:link { color:#aaa; display:block; line-height:38px; padding:0 10px; text-decoration:none; } 36 | nav ul ul { box-shadow:0 3px 3px rgba(0,0,0,0.2); -moz-box-shadow:0 3px 3px rgba(0,0,0,0.2); -webkit-box-shadow:0 3px 3px rgba(0,0,0,0.2); display:none; position:absolute; top:38px; left:0; float:left; width:180px; z-index:99999; } 37 | nav ul ul li { min-width:180px; } 38 | nav ul ul ul { left:100%; top:0; } 39 | nav ul ul a { background:#333; line-height:1em; padding:10px; width:160px; height:auto; } 40 | nav li:hover > a,nav ul ul :hover > a { background:#333; color:#fff; } 41 | nav ul li:hover > ul { display:block; } 42 | nav ul li.current_page_item > a,nav ul li.current-menu-ancestor > a,nav ul li.current-menu-item > a,nav ul li.current-menu-parent > a { color:#fff; } 43 | 44 | #content header p.entry-meta { margin-bottom: 0px; } 45 | 46 | input[type="email"], 47 | input[type="url"] { background: #f9f9f9; border: 1px solid #ccc; box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); padding: 2px; } 48 | 49 | 50 | .ie6 nav ul li.current_page_item a,.ie6 nav ul li.current-menu-ancestor a,.ie6 nav ul li.current-menu-item a,.ie6 nav ul li.current-menu-parent a,.ie6 nav ul li a:hover { color:#fff; } -------------------------------------------------------------------------------- /tag.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
    13 |
    14 |
    15 |

    ' . single_tag_title( '', false ) . '' ); 17 | ?>

    18 |
    19 | 20 | 27 |
    28 |
    29 | 30 | 31 | 32 | --------------------------------------------------------------------------------