├── README.md ├── favicon.png ├── .gitignore ├── screenshot.png ├── assets ├── images │ ├── login-logo.png │ ├── win8-tile-icon.png │ └── apple-icon-touch.png ├── styles │ └── login.css └── scripts │ └── scripts.js ├── functions ├── translation │ ├── hr.mo │ ├── de_DE.mo │ ├── es_ES.mo │ ├── fr_FR.mo │ ├── he_IL.mo │ ├── it_IT.mo │ ├── nl_NL.mo │ ├── pl_PL.mo │ ├── pt_BR.mo │ ├── pt_PT.mo │ ├── ru_RU.mo │ ├── sv_SE.mo │ ├── zh_CN.mo │ ├── default.mo │ ├── translation.php │ ├── README │ ├── default.po │ └── zh_CN.po ├── editor-styles.php ├── login.php ├── disable-emoji.php ├── related-posts.php ├── enqueue-scripts.php ├── comments.php ├── page-navi.php ├── theme-support.php ├── sidebar.php ├── admin.php ├── menu.php ├── cleanup.php └── custom-post-type.php ├── parts ├── content-byline.php ├── content-offcanvas.php ├── nav-topbar.php ├── nav-offcanvas.php ├── nav-title-bar.php ├── loop-page.php ├── nav-offcanvas-topbar.php ├── loop-archive.php ├── loop-single.php ├── content-missing.php └── loop-archive-grid.php ├── sidebar.php ├── style.css ├── searchform.php ├── template-full-width.php ├── page.php ├── single.php ├── footer.php ├── foundation-sites ├── LICENSE └── dist │ └── js │ └── plugins │ ├── foundation.util.imageLoader.min.js │ ├── foundation.util.timer.min.js │ ├── foundation.util.nest.min.js │ ├── foundation.util.motion.min.js │ ├── foundation.util.keyboard.min.js │ ├── foundation.util.mediaQuery.min.js │ ├── foundation.util.touch.min.js │ ├── foundation.smoothScroll.min.js │ ├── foundation.util.box.min.js │ ├── foundation.responsiveMenu.min.js │ ├── foundation.responsiveToggle.min.js │ ├── foundation.interchange.min.js │ ├── foundation.magellan.min.js │ ├── foundation.util.triggers.min.js │ ├── foundation.equalizer.min.js │ ├── foundation.util.imageLoader.js.map │ ├── foundation.accordion.min.js │ ├── foundation.responsiveAccordionTabs.min.js │ ├── foundation.util.timer.js.map │ ├── foundation.accordionMenu.min.js │ ├── foundation.util.imageLoader.min.js.map │ ├── foundation.util.nest.js.map │ ├── foundation.util.timer.min.js.map │ └── foundation.tabs.min.js ├── 404.php ├── index.php ├── search.php ├── archive.php ├── header.php ├── functions.php └── comments.php /README.md: -------------------------------------------------------------------------------- 1 | Currently using Foundation 6.5.3. -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/favicon.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | assets/scss/.sass-cache/* 3 | node_modules/ 4 | bower_components/ -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/screenshot.png -------------------------------------------------------------------------------- /assets/images/login-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/assets/images/login-logo.png -------------------------------------------------------------------------------- /functions/translation/hr.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/hr.mo -------------------------------------------------------------------------------- /functions/translation/de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/de_DE.mo -------------------------------------------------------------------------------- /functions/translation/es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/es_ES.mo -------------------------------------------------------------------------------- /functions/translation/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/fr_FR.mo -------------------------------------------------------------------------------- /functions/translation/he_IL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/he_IL.mo -------------------------------------------------------------------------------- /functions/translation/it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/it_IT.mo -------------------------------------------------------------------------------- /functions/translation/nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/nl_NL.mo -------------------------------------------------------------------------------- /functions/translation/pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/pl_PL.mo -------------------------------------------------------------------------------- /functions/translation/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/pt_BR.mo -------------------------------------------------------------------------------- /functions/translation/pt_PT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/pt_PT.mo -------------------------------------------------------------------------------- /functions/translation/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/ru_RU.mo -------------------------------------------------------------------------------- /functions/translation/sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/sv_SE.mo -------------------------------------------------------------------------------- /functions/translation/zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/zh_CN.mo -------------------------------------------------------------------------------- /assets/images/win8-tile-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/assets/images/win8-tile-icon.png -------------------------------------------------------------------------------- /functions/translation/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/functions/translation/default.mo -------------------------------------------------------------------------------- /assets/images/apple-icon-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyEnglert/JointsWP-CSS/HEAD/assets/images/apple-icon-touch.png -------------------------------------------------------------------------------- /assets/styles/login.css: -------------------------------------------------------------------------------- 1 | .login h1 a{ 2 | background:url(../images/login-logo.png) no-repeat top; 3 | width:326px; 4 | height:67px; 5 | text-indent:-9999px; 6 | overflow:hidden; 7 | padding-bottom:15px; 8 | display:block 9 | } -------------------------------------------------------------------------------- /parts/content-byline.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |

8 | Posted on by - 9 |

-------------------------------------------------------------------------------- /functions/editor-styles.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | -------------------------------------------------------------------------------- /functions/translation/translation.php: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /****************************************************************** 2 | Theme Name: JointsWP - CSS 3 | Theme URI: http://www.jointswp.com 4 | Description: 5 | Author: Your Name Here 6 | Author URI: http://www.yoururlhere.com 7 | Version: 5.0 8 | License: GNU General Public License & MIT 9 | License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 | Tags: Sass 11 | ******************************************************************/ -------------------------------------------------------------------------------- /parts/content-offcanvas.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | -------------------------------------------------------------------------------- /parts/nav-topbar.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /parts/nav-offcanvas.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 |
11 | 14 |
15 |
16 | 20 |
21 |
-------------------------------------------------------------------------------- /assets/scripts/scripts.js: -------------------------------------------------------------------------------- 1 | jQuery(document).foundation(); 2 | /* 3 | These functions make sure WordPress 4 | and Foundation play nice together. 5 | */ 6 | jQuery(document).ready(function(){// Remove empty P tags created by WP inside of Accordion and Orbit 7 | jQuery('.accordion p:empty, .orbit p:empty').remove();// Adds Flex Video to YouTube and Vimeo Embeds 8 | jQuery('iframe[src*="youtube.com"], iframe[src*="vimeo.com"]').each(function(){if(jQuery(this).innerWidth()/jQuery(this).innerHeight()>1.5){jQuery(this).wrap("
");}else{jQuery(this).wrap("
");}});}); 9 | 10 | /* 11 | Insert Custom JS Below 12 | */ -------------------------------------------------------------------------------- /searchform.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | -------------------------------------------------------------------------------- /template-full-width.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 | 10 |
11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /functions/login.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |
8 |
9 | 10 |
11 |
12 | 15 |
16 |
17 | 18 |
19 |
-------------------------------------------------------------------------------- /parts/loop-page.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
role="article" itemscope itemtype="http://schema.org/WebPage"> 8 | 9 |
10 |

11 |
12 | 13 |
14 | 15 |
16 | 17 |
18 | 19 |
20 | 21 | 22 | 23 |
-------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
11 | 12 |
13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 | -------------------------------------------------------------------------------- /parts/nav-offcanvas-topbar.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 |
11 | 14 |
15 |
16 | 17 |
18 |
19 | 23 |
24 |
-------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 | 10 |
11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 |
29 | 30 |
31 | 32 | -------------------------------------------------------------------------------- /functions/translation/README: -------------------------------------------------------------------------------- 1 | ## bones / languages 2 | 3 | **This folder contains the language-files for the bones framework.** 4 | 5 | A function in `functions.php` identifies the LOCALE (e.g. da_DK) of your WordPress installation. If there is a language-file in `languages/` named accordingly (e.g. `da_DK.mo`), bones will use it. Fallback is English. 6 | 7 | ### How to translate bones to your language 8 | 9 | 1 Make a copy of `default.po` an change the filename to your LOCALE.po (e.g. `da_DK.mo`) 10 | 2 Use [poedit](http://www.poedit.net/ "home of poedit") to edit your po-file. 11 | 3 When saving your po-file, poedit will create/update a corresponding mo-file. 12 | 4 Please commit both your po- and mo-file. 13 | 14 | ### More 15 | 16 | http://codex.wordpress.org/I18n_for_WordPress_Developers 17 | 18 | http://www.wdmac.com/how-to-create-a-po-language-translation#more-631 19 | -------------------------------------------------------------------------------- /functions/disable-emoji.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
role="article"> 10 | 11 |
12 |

13 | 14 |
15 | 16 |
17 | 18 | ' . __( 'Read more...', 'jointswp' ) . ''); ?> 19 |
20 | 21 |
22 |

' . __('Tags:', 'jointstheme') . ' ', ', ', ''); ?>

23 |
24 | 25 |
-------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
12 | 13 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /functions/related-posts.php: -------------------------------------------------------------------------------- 1 | ID ); 7 | if($tags) { 8 | foreach( $tags as $tag ) { 9 | $tag_arr .= $tag->slug . ','; 10 | } 11 | $args = array( 12 | 'tag' => $tag_arr, 13 | 'numberposts' => 3, /* you can change this to show more */ 14 | 'post__not_in' => array($post->ID) 15 | ); 16 | $related_posts = get_posts( $args ); 17 | if($related_posts) { 18 | echo __( '

Related Posts

', 'jointswp' ); 19 | echo '