├── .editorconfig ├── .gitignore ├── .gitmodules ├── .jshintrc ├── .travis.yml ├── 404.php ├── CHANGELOG.md ├── CONTRIBUTING.md ├── README.md ├── archive.php ├── assets ├── css │ └── vendor │ │ └── flexnav-min.css ├── js │ ├── app │ │ └── readme.md │ └── vendor │ │ ├── custom-offcanvas.js │ │ ├── flexnav │ │ ├── jquery.flexnav.js │ │ └── jquery.flexnav.min.js │ │ ├── headroom │ │ └── headroom-min.js │ │ ├── hoverintent │ │ └── jquery.hoverIntent.js │ │ ├── modernizr │ │ ├── modernizr.custom.js │ │ └── modernizr.js │ │ ├── navigation.js │ │ ├── selectivizr │ │ └── selectivizr.js │ │ └── skip-link-focus-fix.js └── sass │ ├── _app.scss │ ├── abstracts │ ├── __abstracts-dir.scss │ ├── _accessibility.scss │ ├── _typography.scss │ └── _variables.scss │ ├── base │ ├── __base-dir.scss │ └── _normalize.scss │ ├── components │ ├── __components-dir.scss │ ├── _buttons.scss │ ├── _infinite-scroll.scss │ ├── _inputs.scss │ └── _media.scss │ ├── layouts │ ├── __layouts-dir.scss │ ├── _content.scss │ ├── _footer.scss │ ├── _header.scss │ ├── _navigation.scss │ ├── _sidebar.scss │ ├── _structure.scss │ └── navigation-offcanvas.scss │ ├── style.scss │ ├── templates │ ├── __templates-dir.scss │ ├── _template-2col-l-sidebar.scss │ ├── _template-2col-r-sidebar.scss │ ├── _template-full-width.scss │ └── _template-landing-page.scss │ └── vendor │ ├── __vendor-dir.scss │ ├── _base.scss │ ├── _buttons.scss │ ├── _dashicons.scss │ ├── _forms.scss │ ├── _grid-settings.scss │ ├── _headroom.scss │ ├── _layout.scss │ ├── _lists.scss │ ├── _media.scss │ ├── _tables.scss │ ├── _typography.scss │ ├── _variables.scss │ └── flexnav.scss ├── attachment.php ├── comments.php ├── composer.json ├── composer.phar ├── footer.php ├── functions.php ├── gulpfile.js ├── header.php ├── index.php ├── library ├── assets.php ├── customizer-frontend-settings.php ├── extras.php ├── languages │ ├── digistarter.mo │ ├── digistarter.pot │ ├── en_US.mo │ ├── en_US.po │ ├── es.mo │ ├── es.po │ └── readme.txt ├── structure │ ├── content.php │ ├── footer.php │ └── header.php ├── theme-setup.php ├── vendor.php ├── vendors │ ├── custom-header.php │ ├── customizer │ │ ├── customizer.php │ │ └── js │ │ │ └── customizer.js │ ├── extras.php │ ├── jetpack.php │ ├── meta.php │ ├── template-tags.php │ ├── tgm-plugin-activation │ │ ├── .bower.json │ │ ├── README.md │ │ ├── class-tgm-plugin-activation.php │ │ ├── composer.json │ │ └── tgm-plugin-activation.php │ └── theme-hook-alliance │ │ ├── .bower.json │ │ ├── README.md │ │ ├── composer.json │ │ ├── tha-example-index.php │ │ └── tha-theme-hooks.php └── widgets.php ├── license.txt ├── package-lock.json ├── package.json ├── page-templates ├── template-full-width.php ├── template-landing-page.php ├── template-left-col.php ├── template-parts │ ├── content-aside.php │ ├── content-attachment.php │ ├── content-audio.php │ ├── content-chat.php │ ├── content-gallery.php │ ├── content-image.php │ ├── content-link.php │ ├── content-none.php │ ├── content-page.php │ ├── content-quote.php │ ├── content-single.php │ ├── content-status.php │ ├── content-video.php │ ├── content.php │ ├── footer-landing.php │ ├── header-landing.php │ ├── navigation-flexnav.php │ └── navigation-offcanvas.php └── template-right-col.php ├── page.php ├── screenshot.png ├── search.php ├── sidebar.php ├── single.php ├── singular.php └── style.css /.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # editorconfig.org 3 | 4 | # WordPress Coding Standards 5 | # http://make.wordpress.org/core/handbook/coding-standards/ 6 | 7 | root = true 8 | 9 | [*] 10 | charset = utf-8 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | indent_style = tab 15 | 16 | [*.json] 17 | indent_style = space 18 | indent_size = 2 19 | 20 | [*.css] 21 | indent_style = space 22 | indent_size = 2 23 | 24 | [*.yml] 25 | indent_style = space 26 | indent_size = 2 27 | 28 | [*.scss] 29 | indent_style = space 30 | indent_size = 2 31 | 32 | [*.txt] 33 | end_of_line = crlf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Packages # 2 | ############ 3 | *.7z 4 | *.dmg 5 | *.gz 6 | *.bz2 7 | *.iso 8 | *.jar 9 | *.rar 10 | *.tar 11 | *.zip 12 | *.tgz 13 | *.map 14 | 15 | # Logs and databases # 16 | ###################### 17 | *.log 18 | *.sql 19 | 20 | # OS generated files # 21 | ###################### 22 | **.DS_Store* 23 | ehthumbs.db 24 | Icon? 25 | Thumbs.db 26 | ._* 27 | 28 | # Vim generated files # 29 | ###################### 30 | *.un~ 31 | 32 | # SASS # 33 | ########## 34 | **/.sass-cache 35 | **/.sass-cache/* 36 | **/.map 37 | 38 | # Composer # 39 | ########## 40 | vendor 41 | wpcs/ 42 | composer.lock 43 | 44 | # Bower # 45 | ########## 46 | assets/bower_components/* 47 | 48 | # Codekit # 49 | ########## 50 | /codekit-config.json 51 | *.codekit 52 | **.codekit-cache/* 53 | 54 | # NPM # 55 | ########## 56 | node_modules 57 | 58 | # Compiled Files and Build Dirs # 59 | ########## 60 | /README.html 61 | /build/ 62 | 63 | # PhpStrom Project Files # 64 | .idea/ 65 | library/vendors/composer 66 | assets/img/.DS_Store 67 | assets/sass/HTML 68 | assets/sass/Rails 69 | HTML 70 | Rails 71 | 72 | # Theme Specific # 73 | !assets/js/vendor/ 74 | !assets/assets/vendor 75 | 76 | # WordPress # 77 | ########## 78 | # wordpress specific 79 | wp-config.php 80 | wp-content/uploads/ 81 | wp-content/blogs.dir/ 82 | wp-content/upgrade/* 83 | wp-content/backup-db/* 84 | wp-content/advanced-cache.php 85 | wp-content/wp-cache-config.php 86 | wp-content/cache/* 87 | wp-content/cache/supercache/* 88 | 89 | # wpengine specific 90 | .smushit-status 91 | .gitattributes 92 | _wpeprivate 93 | wp-content/object-cache.php 94 | wp-content/mu-plugins/mu-plugin.php 95 | wp-content/mu-plugins/slt-force-strong-passwords.php 96 | wp-content/mu-plugins/limit-login-attempts 97 | wp-content/mu-plugins/wpengine-comm 98 | 99 | # large/disallowed file types 100 | # a CDN should be used for these 101 | *.hqx 102 | *.bin 103 | *.exe 104 | *.dll 105 | *.deb 106 | *.img 107 | *.msi 108 | *.msp 109 | *.msm 110 | *.mid 111 | *.midi 112 | *.kar 113 | *.mp3 114 | *.ogg 115 | *.m4a 116 | *.ra 117 | *.3gpp 118 | *.3gp 119 | *.mp4 120 | *.mpeg 121 | *.mpg 122 | *.mov 123 | *.webm 124 | *.flv 125 | *.m4v 126 | *.mng 127 | *.asx 128 | *.asf 129 | *.wmv 130 | *.avi 131 | /assets/css 132 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digisavvy/some-like-it-neat/23ddbc5fa4121c334ad728376ab9a169b1bbe213/.gitmodules -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true, 3 | "browser": true, 4 | "esnext": true, 5 | "bitwise": true, 6 | "camelcase": true, 7 | "curly": true, 8 | "eqeqeq": true, 9 | "immed": true, 10 | "indent": 2, 11 | "newcap": true, 12 | "noarg": true, 13 | "quotmark": "single", 14 | "undef": true, 15 | "unused": "vars", 16 | "strict": true, 17 | "trailing": true, 18 | "smarttabs": true, 19 | "jquery": true 20 | } 21 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # Travis CI (MIT License) config file 2 | # @link https://travis-ci.org/ 3 | 4 | # Declare project language. 5 | # @link http://about.travis-ci.org/docs/user/languages/php/ 6 | language: php 7 | 8 | # Declare versions of PHP to use. Use one decimal max. 9 | php: 10 | - "7.0" 11 | - "5.6" 12 | - "5.5" 13 | - "5.4" 14 | - "5.3" 15 | - "5.2" 16 | 17 | # Declare which versions of WordPress to test against. 18 | # Also declare whether or not to test in Multisite. 19 | env: 20 | # Trunk 21 | # @link https://github.com/WordPress/WordPress 22 | - WP_VERSION=master WP_MULTISITE=0 23 | # WordPress 4.5 24 | # @link https://github.com/WordPress/WordPress/tree/4.5-branch 25 | - WP_VERSION=4.5 WP_MULTISITE=0 26 | # WordPress 4.4 27 | # @link https://github.com/WordPress/WordPress/tree/4.4-branch 28 | - WP_VERSION=4.4 WP_MULTISITE=0 29 | 30 | # Declare 5.6 beta in test matrix. 31 | # @link https://buddypress.trac.wordpress.org/ticket/5620 32 | # @link http://docs.travis-ci.com/user/build-configuration/ 33 | matrix: 34 | include: 35 | - php: 5.6 36 | env: WP_VERSION=master 37 | allow_failures: 38 | - php: 5.6 39 | fast_finish: true 40 | 41 | # Use this to prepare the system to install prerequisites or dependencies. 42 | # e.g. sudo apt-get update. 43 | # Failures in this section will result in build status 'errored'. 44 | # before_install: 45 | 46 | # Use this to prepare your build for testing. 47 | # e.g. copy database configurations, environment variables, etc. 48 | # Failures in this section will result in build status 'errored'. 49 | before_script: 50 | # Set up WordPress installation. 51 | - export WP_DEVELOP_DIR=/tmp/wordpress/ 52 | - mkdir -p $WP_DEVELOP_DIR 53 | # Use the Git mirror of WordPress. 54 | - git clone --depth=1 --branch="$WP_VERSION" git://develop.git.wordpress.org/ $WP_DEVELOP_DIR 55 | # Set up theme information. 56 | - theme_slug=$(basename $(pwd)) 57 | - theme_dir=$WP_DEVELOP_DIR/src/wp-content/themes/$theme_slug 58 | - cd .. 59 | - mv $theme_slug $theme_dir 60 | # Set up WordPress configuration. 61 | - cd $WP_DEVELOP_DIR 62 | - echo $WP_DEVELOP_DIR 63 | - cp wp-tests-config-sample.php wp-tests-config.php 64 | - sed -i "s/youremptytestdbnamehere/wordpress_test/" wp-tests-config.php 65 | - sed -i "s/yourusernamehere/root/" wp-tests-config.php 66 | - sed -i "s/yourpasswordhere//" wp-tests-config.php 67 | # Create WordPress database. 68 | - mysql -e 'CREATE DATABASE wordpress_test;' -uroot 69 | # Install CodeSniffer for WordPress Coding Standards checks. 70 | - git clone https://github.com/squizlabs/PHP_CodeSniffer.git php-codesniffer 71 | # Install WordPress Coding Standards. 72 | - git clone https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git wordpress-coding-standards 73 | # Hop into CodeSniffer directory. 74 | - cd php-codesniffer 75 | # Set install path for WordPress Coding Standards. 76 | # @link https://github.com/squizlabs/PHP_CodeSniffer/blob/4237c2fc98cc838730b76ee9cee316f99286a2a7/CodeSniffer.php#L1941 77 | - scripts/phpcs --config-set installed_paths ../wordpress-coding-standards 78 | # Hop into themes directory. 79 | - cd $theme_dir 80 | # After CodeSniffer install you should refresh your path. 81 | - phpenv rehash 82 | 83 | # Run test script commands. 84 | # Default is specific to project language. 85 | # All commands must exit with code 0 on success. Anything else is considered failure. 86 | script: 87 | # Search for PHP syntax errors. 88 | - find . \( -name '*.php' \) -exec php -lf {} \; 89 | # WordPress Coding Standards 90 | # @link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards 91 | # @link http://pear.php.net/package/PHP_CodeSniffer/ 92 | # -p flag: Show progress of the run. 93 | # -s flag: Show sniff codes in all reports. 94 | # -v flag: Print verbose output. 95 | # -n flag: Do not print warnings. (shortcut for --warning-severity=0) 96 | # --standard: Use WordPress as the standard. 97 | # --extensions: Only sniff PHP files. 98 | #- $WP_DEVELOP_DIR/php-codesniffer/scripts/phpcs -p -s -v -n . --standard=WordPress --extensions=php -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GPL-2.0+ https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html 8 | * @link https://github.com/digisavvy/some-like-it-neat 9 | */ 10 | 11 | get_header(); ?> 12 | 13 |
14 | 15 |
16 | 21 | 22 |
23 |

24 | 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
34 |

35 | 36 |

37 |
    38 | 'count', 41 | 'order' => 'DESC', 42 | 'show_count' => 1, 43 | 'title_li' => '', 44 | 'number' => 10, 45 | ) 46 | ); 47 | ?> 48 |
49 |
50 | 51 | 52 | ' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'some-like-it-neat' ), convert_smilies( ':)' ) ) . '

'; 55 | the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=$archive_content" ); 56 | ?> 57 | 58 | 59 | 60 |
61 |
62 | 63 |
64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | # Contribution Guide for Some Like it Neat 3 | 4 | How Can I Contribute? 5 | --------------- 6 | 7 | **Reporting Bugs** 8 | 9 | Reporting bugs is one way to contribute to this project. Make sure to open an issue on the relevant branch, either 10 | Master or Development. 11 | 12 | * Before you create an issue, please check the closed issues first to see if your issue hasn't already been addressed. 13 | * When reporting and bug and creating an issue please do the following: 14 | * Concise description of the issue. 15 | * Verify the issue is isolated to Some Like it Neat (be sure to test in another theme to see if issue persists). 16 | * Provide Steps to reproduce the issue. 17 | 1. First Step 18 | 2. Second Step 19 | 3. Third Step etc. 20 | * Expected behavior. What should have happened instead of the bug you're reporting? 21 | * What actually happens because of the bug? 22 | * What version and what branch are you using? 23 | * Additional configuration can be of assitance, too; i.e. Operating System, version of Node, Gulp Packages etc. 24 | 25 | **Suggesting Enhancements** 26 | 27 | I'm always open for enhancements to this theme. You can open an issue. Be sure to label the issue with 'enhancement.' 28 | 29 | **Code Contributions** 30 | 31 | Dang! What a cool ass person you must be to give up some of your free time for an awesome PR (pull request)! I welcome 32 | well-thought and well-implemented code to this project. 33 | 34 | How you should contribute your code 35 | * First, clone this project's `development` branch. 36 | * Make all of your necessary changes on the `development` branch and test to ensure it doesn't cause insane breakage. 37 | Once you're good there, push your changes and create a *pull request.* From there, I'll review the PR and decide to approve it. 38 | When it's approved I will merge your *pull request* into the `development` branch and eventually into the `master` branch. -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- 1 | 9 | * @license GPL-2.0+ https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html 10 | * @link https://github.com/digisavvy/some-like-it-neat 11 | */ 12 | 13 | get_header(); ?> 14 | 15 |
16 | 17 |
18 | 19 | 20 | 21 | 32 | 33 | 34 | 35 | 36 | 37 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 |
55 | 56 |
57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /assets/js/app/readme.md: -------------------------------------------------------------------------------- 1 | JS Files for Theme 2 | ================== 3 | 4 | You don't need to link to files placed in this folder. Instead, link to either 5 | production.js or development.js files in functions.php or directly in your markup. 6 | 7 | Consideration: These scripts load on all pages. So if your script isn't required to be called everywhere you may not 8 | want to place file here. -------------------------------------------------------------------------------- /assets/js/vendor/custom-offcanvas.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Custom v1.0 3 | * Contains handlers for the offcanvas menu 4 | * 5 | * @package some_like_it_neat 6 | * Code generously borrowed with modification from https://designorbital.com 7 | */ 8 | 9 | ( function( $ ) { 10 | 11 | var slin = { 12 | 13 | // Site Menu 14 | menuInit: function() { 15 | 16 | // Add dropdown toggle that display child menu items. 17 | $('.site-header-menu .page_item_has_children > a, .site-header-menu .menu-item-has-children > a').append(' 32 | 33 | 'primary-navigation', 37 | 'menu_class' => 'flexnav', 38 | 'items_wrap' => '', 39 | ) 40 | ); 41 | ?> 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /page-templates/template-parts/navigation-offcanvas.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GPL-2.0+ https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html 8 | * @link https://github.com/digisavvy/some-like-it-neat 9 | */ 10 | 11 | ?> 12 | 13 | 52 | 53 | 76 | 77 |
78 | 79 | -------------------------------------------------------------------------------- /page-templates/template-right-col.php: -------------------------------------------------------------------------------- 1 | 13 | * @license GPL-2.0+ https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html 14 | * @link https://github.com/digisavvy/some-like-it-neat 15 | */ 16 | 17 | get_header(); ?> 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 | 35 | 36 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 53 | 54 | 55 | 56 |
57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- 1 | 12 | * @license GPL-2.0+ https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html 13 | * @link https://github.com/digisavvy/some-like-it-neat 14 | */ 15 | 16 | get_header(); ?> 17 | 18 |
19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 |
29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digisavvy/some-like-it-neat/23ddbc5fa4121c334ad728376ab9a169b1bbe213/screenshot.png -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GPL-2.0+ https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html 8 | * @link https://github.com/digisavvy/some-like-it-neat 9 | */ 10 | 11 | get_header(); ?> 12 | 13 |
14 | 15 | 16 | 17 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 |
40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GPL-2.0+ https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html 8 | * @link https://github.com/digisavvy/some-like-it-neat 9 | */ 10 | 11 | ?> 12 | 13 | 14 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- 1 | 8 | * @license GPL-2.0+ https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html 9 | * @link https://github.com/digisavvy/some-like-it-neat 10 | */ 11 | 12 | get_header(); ?> 13 | 14 |
15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 27 | 28 | 29 | 30 |
31 | 32 |
33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /singular.php: -------------------------------------------------------------------------------- 1 | 11 | * @license GPL-2.0+ https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html 12 | * @link https://github.com/digisavvy/some-like-it-neat 13 | */ 14 | 15 | get_header(); ?> 16 | 17 |
18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 |
34 | 35 |
36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Theme Name: Some Like it Neat 3 | Theme URI: https://github.com/digisavvy/some-like-it-neat 4 | Author: Alex Vasquez 5 | Author URI: http://alexhasnicehair.com 6 | Description: A simple yet advanced Starter Theme built using _S, Bourbon and Neat (http://underscores.me, http://bourbon.io, http://neat.bourbon.io). Please refer to the README.md file for basic usage instructions and prerequisites. You can always grab the latest version over at http://github.com/digisavvy.some-like-it-neat 7 | Version: 1.6 8 | License: GNU General Public License 9 | License URI: license.txt 10 | Text Domain: some_like_it_neat 11 | Domain Path: /library/languages/ 12 | Tags: white, light, one-column, two-columns, right-sidebar, responsive-layout, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, sticky-post, translation-ready, accessibility-ready 13 | 14 | This theme, like WordPress, is licensed under the GPL. 15 | Use it to make something cool, have fun, and share what you've learned with others. 16 | 17 | Some Like it Neat is based on Underscores http://underscores.me/, (C) 2012-2013 Automattic, Inc. 18 | 19 | Resetting and rebuilding styles have been helped along thanks to the fine work of 20 | Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html 21 | along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/ 22 | and Blueprint http://www.blueprintcss.org/ 23 | 24 | ========================= 25 | PLEASE READ AND PLEASE DO NOT EDIT THIS FILE! 26 | ========================= 27 | This file is only in your theme folder for WordPress to recognize basic theme data like name and version 28 | CSS Rules in this file will not be used by the theme. 29 | 30 | PLEASE READ!!! 31 | You're probably wondering what is going on here. It's cool. I get it. 32 | 33 | If you do want a regular style.css file to pop up, uncomment the following line in your gulpfile.js file, in the style task. 34 | .pipe(gulp.dest('./')) 35 | 36 | The source versions of css, images and js reside in the 'assets/' folder, within their respective folder names '/css, /js, /images' etc... 37 | 38 | Admittedly I'm still trying to figure this part out, but place your un-minified assets in the assets directories. The gulp default task 39 | will take your files, do some crazy shit to them, such as minifying, renaming and moving to the assets folder, again, under 40 | their respective folder names. 41 | 42 | In functions.php notice that we're enqueing the main style (the minified version) and that we're also enqueing 43 | production-min.js. Production-min file has all the relevant scripts for our project, combined into one minified file. Again 44 | the idea here is for smaller file sizes, and fewer resource calls. 45 | 46 | Changes you make to this theme should be happening to files in your 'src' directory. For now, I'm going to comment 47 | the gulpfile.js file as much as possible and leave things in for you to go back and use yourself at another time, should 48 | you wish to experiment. 49 | 50 | As always, tips and pull requests welcome. 51 | 52 | 53 | */ 54 | --------------------------------------------------------------------------------