├── source ├── assets │ ├── stylesheets │ │ ├── _theme.scss │ │ ├── font-awesome │ │ │ ├── _fixed-width.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── font-awesome.scss │ │ │ ├── _core.scss │ │ │ ├── _stacked.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _path.scss │ │ │ ├── _animated.scss │ │ │ └── _mixins.scss │ │ ├── _variables.scss │ │ ├── util │ │ │ ├── _util.scss │ │ │ ├── _selector.scss │ │ │ ├── _color.scss │ │ │ ├── _unit.scss │ │ │ ├── _value.scss │ │ │ └── _breakpoint.scss │ │ ├── components │ │ │ ├── _float.scss │ │ │ ├── _sticky.scss │ │ │ ├── _accordion-menu.scss │ │ │ ├── _title-bar.scss │ │ │ ├── _top-bar.scss │ │ │ ├── _badge.scss │ │ │ ├── _label.scss │ │ │ ├── _thumbnail.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _drilldown.scss │ │ │ ├── _close-button.scss │ │ │ ├── _flex-video.scss │ │ │ ├── _media-object.scss │ │ │ ├── _progress-bar.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _dropdown-menu.scss │ │ │ ├── _accordion.scss │ │ │ ├── _callout.scss │ │ │ ├── _visibility.scss │ │ │ ├── _tabs.scss │ │ │ ├── _button-group.scss │ │ │ ├── _slider.scss │ │ │ ├── _reveal.scss │ │ │ ├── _pagination.scss │ │ │ ├── _off-canvas.scss │ │ │ ├── _orbit.scss │ │ │ ├── _menu.scss │ │ │ └── _table.scss │ │ ├── typography │ │ │ ├── _alignment.scss │ │ │ ├── _typography.scss │ │ │ ├── _helpers.scss │ │ │ └── _print.scss │ │ ├── grid │ │ │ ├── _size.scss │ │ │ ├── _layout.scss │ │ │ ├── _grid.scss │ │ │ ├── _gutter.scss │ │ │ ├── _row.scss │ │ │ ├── _position.scss │ │ │ ├── _classes.scss │ │ │ ├── _column.scss │ │ │ └── _flex-grid.scss │ │ ├── forms │ │ │ ├── _help-text.scss │ │ │ ├── _forms.scss │ │ │ ├── _checkbox.scss │ │ │ ├── _label.scss │ │ │ ├── _fieldset.scss │ │ │ ├── _input-group.scss │ │ │ ├── _select.scss │ │ │ ├── _error.scss │ │ │ └── _text.scss │ │ ├── style.scss │ │ ├── foundation.scss │ │ ├── _syntax.scss │ │ └── _global.scss │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ └── javascripts │ │ ├── scripts.js │ │ ├── foundation.util.nest.js │ │ ├── util-map.json │ │ ├── foundation.util.timerAndImageLoader.js │ │ ├── foundation.util.motion.js │ │ ├── foundation.responsiveToggle.js │ │ ├── motion-ui.js │ │ ├── foundation.util.keyboard.js │ │ ├── foundation.responsiveMenu.js │ │ ├── foundation.toggler.js │ │ ├── foundation.equalizer.js │ │ └── foundation.interchange.js ├── _posts │ ├── 2014-12-14-post-one.md │ └── 2014-12-14-post-two.md ├── _layouts │ └── default.html ├── _drafts │ └── 2014-12-14-draft-post.md ├── 404.html ├── _includes │ ├── footer.html │ └── header.html ├── _data │ └── sample.json ├── feed.xml └── index.html ├── .gitignore ├── LICENSE ├── _config.yml └── README.md /source/assets/stylesheets/_theme.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Foundation-Jekyll - Custom Theme Styles 3 | // 4 | -------------------------------------------------------------------------------- /source/_posts/2014-12-14-post-one.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Post 1 4 | --- 5 | 6 | * Post 1 -------------------------------------------------------------------------------- /source/_posts/2014-12-14-post-two.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Post 2 4 | --- 5 | 6 | * Post 2 -------------------------------------------------------------------------------- /source/_layouts/default.html: -------------------------------------------------------------------------------- 1 | {% include header.html %} 2 | 3 | {{ content }} 4 | 5 | {% include footer.html %} -------------------------------------------------------------------------------- /source/_drafts/2014-12-14-draft-post.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Draft Post 1 4 | --- 5 | 6 | * Draft Post 1 -------------------------------------------------------------------------------- /source/404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: 404 4 | permalink: /404.html 5 | --- 6 | 7 |
Nothing to see here...
-------------------------------------------------------------------------------- /source/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronkwhite/foundation-jekyll/HEAD/source/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /source/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronkwhite/foundation-jekyll/HEAD/source/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronkwhite/foundation-jekyll/HEAD/source/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronkwhite/foundation-jekyll/HEAD/source/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.sublime-project 3 | *.sublime-workspace 4 | config.codekit 5 | 6 | .sass-cache 7 | .sass-cache/* 8 | 9 | static/ 10 | -------------------------------------------------------------------------------- /source/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronkwhite/foundation-jekyll/HEAD/source/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /source/assets/stylesheets/font-awesome/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /source/assets/stylesheets/_variables.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Foundation-Jekyll - Style Variables 3 | // Author: @aaronkwhite 4 | // 5 | 6 | // Colors 7 | $black: #444444; 8 | $white: #ffffff; 9 | -------------------------------------------------------------------------------- /source/assets/javascripts/scripts.js: -------------------------------------------------------------------------------- 1 | // 2 | // Foundation-Jekyll - Javascripts 3 | // Author: @aaronkwhite 4 | // 5 | 6 | // Init Foundation 7 | $(document).foundation(); 8 | 9 | // Init Highlight.js 10 | //hljs.initHighlightingOnLoad(); 11 | -------------------------------------------------------------------------------- /source/_includes/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |