├── 404.php ├── README.md ├── archive.php ├── author.php ├── category.php ├── comments.php ├── content-aside.php ├── content-image.php ├── content-link.php ├── content-none.php ├── content-page.php ├── content-quote.php ├── content-status.php ├── content.php ├── css └── ie.css ├── editor-style-rtl.css ├── editor-style.css ├── font ├── bold.woff ├── italic-bold.woff ├── italic.woff └── normal.woff ├── footer.php ├── functions.php ├── header.php ├── image.php ├── inc └── custom-header.php ├── index.php ├── js ├── android.js ├── html5.js ├── jquery.js ├── navigation.js └── theme-customizer.js ├── languages └── twentytwelve.pot ├── page-templates ├── front-page.php └── full-width.php ├── page.php ├── rtl.css ├── screenshot.png ├── screenshot.psd ├── search.php ├── sidebar-front.php ├── sidebar.php ├── single.php ├── style.css └── tag.php /404.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
30 | ' . get_the_title() . '' ); 33 | ?> 34 |
35 | 36 |37 | 'twentytwelve_comment', 'style' => 'ol' ) ); ?> 38 |
39 | 40 | 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> 41 | 46 | 47 | 48 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 |