├── 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 |
-------------------------------------------------------------------------------- /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 |