├── .gitignore ├── 404.php ├── LICENSE ├── README.md ├── archive.php ├── author.php ├── bower.json ├── category.php ├── changelog.txt ├── comments.php ├── css ├── foundation-float.css ├── foundation-float.css.map ├── foundation-float.min.css ├── foundation-float.min.css.map ├── foundation-prototype.css ├── foundation-prototype.css.map ├── foundation-prototype.min.css ├── foundation-prototype.min.css.map ├── foundation-rtl.css ├── foundation-rtl.css.map ├── foundation-rtl.min.css ├── foundation-rtl.min.css.map ├── foundation.css ├── foundation.css.map ├── foundation.min.css ├── foundation.min.css.map ├── motion-ui.css └── motion-ui.min.css ├── footer.php ├── functions.php ├── header.php ├── humans.txt ├── inc ├── cleanup.php ├── comments.php ├── enqueue-scripts.php ├── entry-meta.php ├── foundation.php ├── menu-walker.php ├── navigation.php ├── theme-support.php └── widget-areas.php ├── index.php ├── js ├── foundation.js ├── foundation.min.js ├── responsive-embeds.js └── what-input.min.js ├── languages └── readme.txt ├── page-templates ├── template-page-full-width-no-title.php ├── template-page-no-title.php ├── template-page-sidebar-left.php ├── template-page-sidebar-right.php └── template-search.php ├── page.php ├── search.php ├── searchform.php ├── sidebar.php ├── single.php ├── style.css ├── tag.php ├── template-parts ├── cards │ └── content.php ├── content-aside.php ├── content-image.php ├── content-link.php ├── content-none.php ├── content-page-no-title.php ├── content-page.php ├── content-quote.php ├── content-status.php ├── content.php ├── grid │ └── content.php ├── list-large-image │ └── content.php ├── list-medium-image │ └── content.php ├── loop-cards-full-width.php ├── loop-cards.php ├── loop-classic.php ├── loop-grid-full-width.php ├── loop-grid.php ├── loop-list-large-image-full-width.php ├── loop-list-large-image.php ├── loop-list-medium-image-full-width.php └── loop-list-medium-image.php ├── woocommerce.php └── woocommerce └── loop └── loop-start.php /.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess 2 | wp-config.php 3 | wp-content/uploads/ 4 | wp-content/blogs.dir/ 5 | wp-content/upgrade/ 6 | wp-content/backup-db/ 7 | wp-content/advanced-cache.php 8 | wp-content/wp-cache-config.php 9 | sitemap.xml 10 | *.log 11 | wp-content/cache/ 12 | wp-content/backups/ 13 | sitemap.xml 14 | sitemap.xml.gz 15 | bower_components/ 16 | .DS_Store 17 | .bowerrc -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
33 | ' . get_the_title() . '' 38 | ); 39 | ?> 40 |
41 | 42 | 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?> 43 | 52 | 53 | 54 |55 | 'ol', 58 | 'short_ping' => true, 59 | ) ); 60 | ?> 61 |
62 | 63 | 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?> 64 | 73 | 81 | 82 | 83 | 'button')); ?> 87 | 88 |