├── 404.php ├── archive.php ├── author.php ├── category.php ├── comments.php ├── content-aside.php ├── content-gallery.php ├── content-image.php ├── content-page.php ├── content-single.php ├── content.php ├── css ├── cvar_blue.css ├── cvar_blue.png ├── red.css └── red.png ├── footer.php ├── functions.php ├── header.php ├── index.php ├── js └── html5.js ├── library ├── admin │ ├── Minify │ │ ├── CommentPreserver.php │ │ └── Compressor.php │ ├── admin.php │ ├── meta-box-archive-display.php │ ├── meta-box-style-css-compression.php │ ├── meta-box-theme-about.php │ ├── meta-box-theme-css-variations.php │ ├── meta-box-theme-font.php │ ├── meta-box-theme-footer.php │ ├── meta-box-theme-logo-and-favicon.php │ └── theme-settings.php ├── bareskin.php ├── css │ ├── 2c-l-fixed.css │ ├── 2c-r-fixed.css │ ├── 3c-fixed.css │ ├── admin.css │ ├── reset.css │ └── responsive.css ├── functions │ ├── breadcrumb-trail.php │ ├── color_variation.php │ ├── comments.php │ ├── content.php │ ├── core.php │ ├── fonts.php │ ├── get-the-image.php │ ├── menus.php │ ├── shortcodes.php │ ├── sidebars.php │ └── widgets.php └── widgets │ ├── widget_adv_recent_posts.php │ ├── widget_advanced_text.php │ └── widget_advertisment.php ├── loop-nav.php ├── menu-primary.php ├── page.php ├── readme.txt ├── search.php ├── searchform.php ├── sidebar-after-content.php ├── sidebar-before-content.php ├── sidebar-subsidiary.php ├── sidebar.php ├── single.php ├── style.css ├── tag.php └── tpl_full-width-page.php /404.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
%2$s photo.', 'This gallery contains %2$s photos.', $total_images, bareskin_get_textdomain() ), 46 | 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', bareskin_get_textdomain() ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"', 47 | number_format_i18n( $total_images ) 48 | ); ?>
49 | 50 | 51 | 52 | '