├── 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 ├── blocks.css ├── editor-blocks.css └── ie.css ├── editor-style-rtl.css ├── editor-style.css ├── footer.php ├── functions.php ├── header.php ├── image.php ├── inc └── custom-header.php ├── index.php ├── js ├── html5.js ├── navigation.js └── theme-customizer.js ├── page-templates ├── front-page.php └── full-width.php ├── page.php ├── readme.txt ├── rtl.css ├── screenshot.png ├── search.php ├── sidebar-front.php ├── sidebar.php ├── single.php ├── style.css └── tag.php /404.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
31 | ' . get_the_title() . '' 36 | ); 37 | ?> 38 |
39 | 40 |41 | 'twentytwelve_comment', 45 | 'style' => 'ol', 46 | ) 47 | ); 48 | ?> 49 |
50 | 51 | 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> 52 | 57 | 58 | 59 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 |