25 | ' . esc_url( home_url( esc_url( $_SERVER['REQUEST_URI'] ) ) ) . '' ); ?> 26 |
27 |28 | 29 |
30 | 31 |-
32 | 20, 'type' => 'postbypost' ) ); ?>
33 |
├── 404.php ├── README.md ├── assets ├── css │ ├── admin │ │ └── menu.css │ ├── app.css │ ├── font-awesome-ie7.css │ └── font-awesome.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── images │ ├── avatar.png │ ├── dotted.png │ ├── loader.gif │ └── logo.png └── js │ ├── admin │ ├── menu.js │ ├── portfolio.js │ └── uploader.js │ ├── custom.js │ └── libs │ ├── custom.modernizr.js │ ├── imagesloaded.min.js │ ├── jquery.bxslider.min.js │ ├── jquery.fitvids.js │ └── jquery.shuffle.min.js ├── comment-ping.php ├── comment.php ├── comments.php ├── config.rb ├── content-aside.php ├── content-attachment.php ├── content-audio.php ├── content-chat.php ├── content-gallery.php ├── content-image.php ├── content-link.php ├── content-page.php ├── content-portfolio_item.php ├── content-quote.php ├── content-status.php ├── content-video.php ├── content.php ├── entry-side.php ├── footer.php ├── functions.php ├── header.php ├── inc ├── class-custom-edit-walker.php ├── class-custom-menu-walker.php ├── class-nav-menu.php ├── class-tgm-plugin-activation.php ├── functions-admin.php ├── functions-woocommerce.php └── widgets │ ├── widget-home-clients.php │ ├── widget-home-cta.php │ ├── widget-home-posts.php │ ├── widget-home-product.php │ └── widget-home-services.php ├── index.php ├── languages ├── bearded-en_EN.mo ├── bearded-en_EN.po ├── bearded-fr_FR.mo ├── bearded-fr_FR.po ├── bearded-ru_RU.mo ├── bearded-ru_RU.po ├── default.mo └── default.po ├── library ├── admin │ ├── admin.php │ ├── meta-box-post-seo.php │ ├── meta-box-post-template.php │ ├── meta-box-theme-about.php │ ├── meta-box-theme-footer.php │ └── theme-settings.php ├── classes │ ├── customize-control-textarea.php │ ├── hybrid-media-grabber.php │ ├── widget-archives.php │ ├── widget-authors.php │ ├── widget-bookmarks.php │ ├── widget-calendar.php │ ├── widget-categories.php │ ├── widget-nav-menu.php │ ├── widget-pages.php │ ├── widget-search.php │ └── widget-tags.php ├── css │ ├── 18px.css │ ├── 18px.min.css │ ├── 20px.css │ ├── 20px.min.css │ ├── 21px.css │ ├── 21px.min.css │ ├── 22px.css │ ├── 22px.min.css │ ├── 24px.css │ ├── 24px.min.css │ ├── 25px.css │ ├── 25px.min.css │ ├── admin.css │ ├── admin.min.css │ ├── drop-downs.css │ ├── drop-downs.min.css │ ├── gallery.css │ ├── gallery.min.css │ ├── nav-bar.css │ ├── nav-bar.min.css │ ├── one-five.css │ ├── one-five.min.css │ ├── reset.css │ └── reset.min.css ├── extensions │ ├── breadcrumb-trail.php │ ├── cleaner-caption.php │ ├── cleaner-gallery.php │ ├── color-palette.php │ ├── custom-field-series.php │ ├── entry-views.php │ ├── featured-header.php │ ├── get-the-image.php │ ├── loop-pagination.php │ ├── post-stylesheets.php │ ├── random-custom-background.php │ ├── theme-fonts.php │ └── theme-layouts.php ├── functions │ ├── comments.php │ ├── context.php │ ├── core-seo.php │ ├── core.php │ ├── customize.php │ ├── deprecated.php │ ├── i18n.php │ ├── media.php │ ├── menus.php │ ├── meta.php │ ├── post-formats.php │ ├── scripts.php │ ├── settings.php │ ├── shortcodes.php │ ├── sidebars.php │ ├── styles.php │ ├── template-hierarchy.php │ ├── template.php │ ├── utility.php │ ├── widgets.php │ └── wish-list.php ├── hybrid.php ├── images │ └── ping.png └── js │ ├── drop-downs.js │ ├── drop-downs.min.js │ ├── mobile-toggle.js │ ├── mobile-toggle.min.js │ ├── nav-bar.js │ └── nav-bar.min.js ├── license.txt ├── loop-error.php ├── loop-nav.php ├── menu-primary.php ├── page-templates ├── home.php ├── portfolio-3.php └── portfolio-4.php ├── readme.txt ├── sass ├── _bearded.scss ├── _normalize.scss ├── _settings.scss ├── foundation │ ├── _alert-boxes.scss │ ├── _block-grid.scss │ ├── _breadcrumbs.scss │ ├── _button-groups.scss │ ├── _buttons.scss │ ├── _clearing.scss │ ├── _custom-forms.scss │ ├── _dropdown-buttons.scss │ ├── _dropdown.scss │ ├── _flex-video.scss │ ├── _forms.scss │ ├── _global.scss │ ├── _grid-5.scss │ ├── _grid.scss │ ├── _inline-lists.scss │ ├── _joyride.scss │ ├── _keystrokes.scss │ ├── _labels.scss │ ├── _magellan.scss │ ├── _orbit.scss │ ├── _pagination.scss │ ├── _panels.scss │ ├── _pricing-tables.scss │ ├── _progress-bars.scss │ ├── _reveal.scss │ ├── _section.scss │ ├── _side-nav.scss │ ├── _split-buttons.scss │ ├── _sub-nav.scss │ ├── _switch.scss │ ├── _tables.scss │ ├── _thumbs.scss │ ├── _tooltips.scss │ ├── _top-bar.scss │ ├── _type.scss │ └── _visibility.scss └── style.scss ├── screenshot.png ├── search.php ├── searchform.php ├── sidebar-primary.php ├── sidebar-shop.php ├── style.css └── woocommerce ├── archive-product.php ├── checkout └── thankyou.php ├── content-product.php ├── loop-shop.php ├── loop ├── loop-end.php ├── loop-start.php └── price.php ├── single-product-reviews.php └── single-product ├── product-thumbnails.php ├── rating.php └── review.php /404.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 13 |
25 | ' . esc_url( home_url( esc_url( $_SERVER['REQUEST_URI'] ) ) ) . '' ); ?> 26 |
27 |28 | 29 |
30 | 31 |30 | trackbacks and pingbacks are open.', 'bearded' ), esc_url( get_trackback_url() ) ); ?> 31 |
32 | 33 | 34 | 35 |36 | 37 |
38 | 39 | 40 | 41 | '', 43 | 'must_log_in' => '' . sprintf( __( 'You must be logged in to post a comment.', 'bearded' ), wp_login_url( apply_filters( 'the_permalink', get_permalink( ) ) ) ) . '
', 44 | 'logged_in_as' => '' . sprintf( __( 'Logged in as %2$s. Log out »', 'bearded' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( ) ) ) ) . '
', 45 | 'comment_notes_before' => '', 46 | 'comment_notes_after' => '', 47 | 'title_reply' => __('Leave a Reply', 'bearded'), 48 | 'title_reply_to' => __('Leave a Reply to %s', 'bearded'), 49 | 'cancel_reply_link' => __('Cancel Reply', 'bearded'), 50 | 'label_submit' => __('Submit Comment', 'bearded') 51 | ); 52 | 53 | ?> 54 | 55 | 56 | 57 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 13 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 27 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 13 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 31 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 13 |' . __( 'Pages:', 'bearded' ), 'after' => '
' ) ); ?> 40 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 13 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 39 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 13 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 31 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 14 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 29 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 13 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 13 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 26 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 14 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 31 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 13 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 32 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 14 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 32 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 13 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 33 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 14 |' . '' . __( 'Pages:', 'bearded' ) . '', 'after' => '
' ) ); ?> 32 |