diff --git a/.bowerrc b/.bowerrc deleted file mode 100644 index 69fad35..0000000 --- a/.bowerrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "directory": "bower_components" -} diff --git a/.gitignore b/.gitignore index dcc034b..01d866b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,4 @@ -node_modules -release -vendor -composer.lock -phpunit.xml -.idea -.ftppass +# Created by .ignore support plugin (hsz.mobi) ### JetBrains template # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion diff --git a/.jshintrc b/.jshintrc deleted file mode 100644 index bb3ff63..0000000 --- a/.jshintrc +++ /dev/null @@ -1,20 +0,0 @@ -{ - "curly": true, - "eqeqeq": true, - "immed": true, - "latedef": true, - "newcap": true, - "noarg": true, - "sub": true, - "undef": true, - "boss": true, - "eqnull": true, - "validthis": true, - "globals": { - "exports": true, - "module": false, - "console": true, - "document": true, - "window": true, - } -} diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index 9926fa1..0000000 --- a/Gruntfile.js +++ /dev/null @@ -1,172 +0,0 @@ -module.exports = function( grunt ) { - - // Project configuration - grunt.initConfig( { - pkg: grunt.file.readJSON( 'package.json' ), - concat: { - options: { - stripBanners: true - }, - main: { - src: [ - 'assets/js/vendor/*/*.min.js', - 'assets/js/vendor/*/*.js', - 'assets/js/src/ascribeio.js' - ], - dest: 'assets/js/ascribeio.js' - } - }, - jshint: { - all: [ - 'Gruntfile.js', - 'assets/js/src/**/*.js', - 'assets/js/test/**/*.js' - ] - }, - uglify: { - all: { - files: { - 'assets/js/ascribeio.min.js': ['assets/js/ascribeio.js'] - }, - options: { - mangle: { - except: ['jQuery'] - } - } - } - }, - - less: { - all: { - options: { - sourceMap: false - }, - files: { - 'assets/css/ascribeio.css': 'assets/css/less/ascribeio.less' - } - } - }, - - - postcss: { - dist: { - options: { - processors: [ - require('autoprefixer-core')({browsers: 'last 2 versions'}) - ] - }, - files: { - 'assets/css/ascribeio.css': [ 'assets/css/ascribeio.css' ] - } - } - }, - - cssmin: { - minify: { - expand: true, - - cwd: 'assets/css/', - src: ['ascribeio.css'], - - dest: 'assets/css/', - ext: '.min.css' - } - }, - watch: { - livereload: { - files: ['assets/css/*.css'], - options: { - livereload: true - } - }, - styles: { - files: ['assets/css/less/**/*.less'], - tasks: ['less', 'autoprefixer', 'cssmin'], - options: { - debounceDelay: 500 - } - }, - scripts: { - files: ['assets/js/src/**/*.js', 'assets/js/vendor/**/*.js'], - tasks: ['jshint', 'concat', 'uglify'], - options: { - debounceDelay: 500 - } - } - }, - 'sftp-deploy': { - build: { - auth: { - host: 'server.territorial.ca', - port: 22, - authKey: 'key1' - }, - cache: 'sftpCache.json', - src: '/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/', - dest: '/home/ascribe/public_html/wp-content/themes/ascribe/', - exclusions: ['/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/node_modules', - '/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/release', - '/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/vendor', - '/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/.git', - '/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/.idea', - '/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/**/.DS_Store'], - serverSep: '/', - concurrency: 4, - progress: true - }, - css: { - auth: { - host: 'server.territorial.ca', - port: 22, - authKey: 'key1' - }, - cache: 'sftpCache.json', - src: '/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/assets/css/', - dest: '/home/ascribe/public_html/wp-content/themes/ascribe/assets/css', - serverSep: '/', - concurrency: 4, - progress: true - }, - js: { - auth: { - host: 'server.territorial.ca', - port: 22, - authKey: 'key1' - }, - cache: 'sftpCache.json', - src: '/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/assets/js/', - dest: '/home/ascribe/public_html/wp-content/themes/ascribe/assets/js', - serverSep: '/', - concurrency: 4, - progress: true - }, - controller: { - auth: { - host: 'server.territorial.ca', - port: 22, - authKey: 'key1' - }, - src: '/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/controller/', - dest: '/home/ascribe/public_html/wp-content/themes/ascribe/controller/', - serverSep: '/', - concurrency: 4, - progress: true - } - } - } ); - - // Load tasks - require('load-grunt-tasks')(grunt); - - // Register tasks - - grunt.registerTask( 'css', ['less', 'postcss', 'cssmin', 'sftp-deploy:css'] ); - - grunt.registerTask( 'js', ['jshint', 'concat', 'uglify', 'sftp-deploy:js'] ); - - grunt.registerTask( 'controller', ['sftp-deploy:controller'] ); - - grunt.registerTask( 'default', ['css', 'js', 'controller'] ); - - grunt.util.linefeed = '\n'; -}; diff --git a/assets/css/ascribeio.css b/assets/css/ascribeio.css deleted file mode 100644 index ccf22a0..0000000 --- a/assets/css/ascribeio.css +++ /dev/null @@ -1,3 +0,0 @@ -h1 { - color: blue; -} diff --git a/assets/css/ascribeio.min.css b/assets/css/ascribeio.min.css deleted file mode 100644 index 9cb59d2..0000000 --- a/assets/css/ascribeio.min.css +++ /dev/null @@ -1 +0,0 @@ -h1{color:#00f} \ No newline at end of file diff --git a/assets/css/less/ascribeio.less b/assets/css/less/ascribeio.less deleted file mode 100644 index a4c9b4b..0000000 --- a/assets/css/less/ascribeio.less +++ /dev/null @@ -1,3 +0,0 @@ -h1 { - color: blue; -} \ No newline at end of file diff --git a/assets/css/readme.md b/assets/css/readme.md deleted file mode 100644 index 1c34ddd..0000000 --- a/assets/css/readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Styles - -Only final CSS styles should exist in this folder. If you are using SASS, LESS, autoprefixer, or some other pre-processor, please place your raw source files in a subdirectory. diff --git a/assets/js/ascribeio.js b/assets/js/ascribeio.js deleted file mode 100644 index 2f7c101..0000000 --- a/assets/js/ascribeio.js +++ /dev/null @@ -1,5 +0,0 @@ -( function( window, undefined ) { - 'use strict'; - - -} )( this ); diff --git a/assets/js/ascribeio.min.js b/assets/js/ascribeio.min.js deleted file mode 100644 index 2dce2ce..0000000 --- a/assets/js/ascribeio.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(a,b){"use strict"}(this); \ No newline at end of file diff --git a/assets/js/src/ascribeio.js b/assets/js/src/ascribeio.js deleted file mode 100644 index decb66f..0000000 --- a/assets/js/src/ascribeio.js +++ /dev/null @@ -1,13 +0,0 @@ -/** - * ascribe - * http://wordpress.org/themes - * - * Copyright (c) 2015 Territorial - * Licensed under the GPLv2+ license. - */ - -( function( window, undefined ) { - 'use strict'; - - -} )( this ); diff --git a/bootstrap.php.dist b/bootstrap.php.dist deleted file mode 100644 index e499c82..0000000 --- a/bootstrap.php.dist +++ /dev/null @@ -1,31 +0,0 @@ -=5.4" - }, - "require-dev": { - "antecedent/patchwork": "1.2.*", - "phpunit/phpunit" : "*@stable", - "brianium/paratest" : "dev-master", - "10up/wp_mock" : "dev-master" - } -} diff --git a/footer.php b/footer.php deleted file mode 100644 index 2c0072d..0000000 --- a/footer.php +++ /dev/null @@ -1,12 +0,0 @@ - - - - - \ No newline at end of file diff --git a/functions.php b/functions.php deleted file mode 100644 index 3add182..0000000 --- a/functions.php +++ /dev/null @@ -1,29 +0,0 @@ - - -> - - - - - \ No newline at end of file diff --git a/humans.txt b/humans.txt deleted file mode 100644 index 2502fdb..0000000 --- a/humans.txt +++ /dev/null @@ -1,21 +0,0 @@ -/* TEAM */ - Developer: Territorial - Contact: us@territorial.ca - URI: http://territorial.ca - -/* THANKS */ - Template Design: 10up - URI: http://10up.com - Twitter: @10up - - Template Design: Eric Mann - URI: https://eamann.com - Twitter: @ericmann - - Template Design: Luke Woodward - URI: http://lkwdwrd.com - Twitter: @lkwdwrd - -/* SITE */ - Created: Wed Sep 16 2015 - Template: https://github.com/10up/generator-wp-make \ No newline at end of file diff --git a/images/readme.md b/images/readme.md deleted file mode 100644 index 1d13ae2..0000000 --- a/images/readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Project Images - -Only images in-use by the project should be placed in this folder. Wherever possible, combine multiple small images into sprites to be used by CSS. Original (non-sprite) images should be placed in the `/src` subdirectory. \ No newline at end of file diff --git a/images/src/readme.md b/images/src/readme.md deleted file mode 100644 index 5d469a9..0000000 --- a/images/src/readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Project Images - -Only source images (i.e. non-sprites, PSDs, raw photos) should be placed in this directory. Source files are meant to serve as a backup for any images that can be edited by an end user. \ No newline at end of file diff --git a/includes/functions/core.php b/includes/functions/core.php deleted file mode 100644 index d98198c..0000000 --- a/includes/functions/core.php +++ /dev/null @@ -1,94 +0,0 @@ - element. - * - * @uses apply_filters() - * - * @since 0.1.0 - * - * @return void. - */ -function header_meta() { - $humans = ''; - - echo apply_filters( 'ttl_humans', $humans ); -} diff --git a/includes/readme.md b/includes/readme.md deleted file mode 100644 index 6a5898a..0000000 --- a/includes/readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Includes - -All theme classes, objects, and libraries should be hidden away in this `/includes` directory. \ No newline at end of file diff --git a/index.php b/index.php deleted file mode 100644 index 6fefc9f..0000000 --- a/index.php +++ /dev/null @@ -1,18 +0,0 @@ - - - - -

- - - - -\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" -"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-SearchPath-0: ..\n" - diff --git a/package.json b/package.json deleted file mode 100644 index f3db3ca..0000000 --- a/package.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "name": "ascribeio", - "title": "ascribe", - "description": "ascribe theme by Territorial", - "version": "0.0.1", - "homepage": "http://wordpress.org/themes", - "repository": { - "type": "git", - "url": "" - }, - "author": { - "name": "Territorial", - "email": "us@territorial.ca", - "url": "http://territorial.ca" - }, - "devDependencies": { - "autoprefixer-core": "^5.2.1", - "grunt": "^0.4.5", - "grunt-contrib-clean": "^0.6.0", - "grunt-contrib-compress": "^0.13.0", - "grunt-contrib-concat": "^0.5.1", - "grunt-contrib-copy": "^0.8.0", - "grunt-contrib-cssmin": "^0.12.3", - "grunt-contrib-jshint": "^0.11.2", - "grunt-contrib-less": "^1.0.1", - "grunt-contrib-qunit": "^0.7.0", - "grunt-contrib-uglify": "^0.9.1", - "grunt-contrib-watch": "^0.6.1", - "grunt-phpunit": "^0.3.6", - "grunt-postcss": "^0.5.4", - "grunt-sass": "^1.0.0", - "grunt-sftp-deploy": "^0.2.4", - "load-grunt-tasks": "^3.2.0", - "qunitjs": "~1.18.0" - }, - "keywords": [] -} diff --git a/phpunit.xml.dist b/phpunit.xml.dist deleted file mode 100644 index a444c41..0000000 --- a/phpunit.xml.dist +++ /dev/null @@ -1,21 +0,0 @@ - - - - ./tests/phpunit - - - - - ./includes - - - - - - - - diff --git a/screenshot.png b/screenshot.png deleted file mode 100644 index 9fc9861..0000000 Binary files a/screenshot.png and /dev/null differ diff --git a/sftpCache.json b/sftpCache.json deleted file mode 100644 index b0a7127..0000000 --- a/sftpCache.json +++ /dev/null @@ -1 +0,0 @@ -{"/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/assets/css//ascribeio.css":"2015-09-16T23:36:41.000Z","/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/assets/css//ascribeio.min.css":"2015-09-16T23:36:41.000Z","/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/assets/css//readme.md":"2015-09-16T23:04:11.000Z","/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/assets/css//less/ascribeio.less":"2015-09-16T23:17:47.000Z","/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/assets/js//ascribeio.js":"2015-09-16T23:36:44.000Z","/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/assets/js//ascribeio.min.js":"2015-09-16T23:36:44.000Z","/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/assets/js//src/ascribeio.js":"2015-09-16T23:04:11.000Z","/Users/sarahetter/Dropbox/_shared/sarahetter/ascribe/assets/js//vendor/readme.md":"2015-09-16T23:04:11.000Z"} \ No newline at end of file diff --git a/style.css b/style.css deleted file mode 100644 index 6bbb788..0000000 --- a/style.css +++ /dev/null @@ -1,19 +0,0 @@ -/** - * Theme Name: ascribe - * Theme URI: http://wordpress.org/themes - * Description: ascribe theme by Territorial - * Author: Territorial - * Author URI: http://territorial.ca - * Version: 0.1.0 - * Tags: - * Text Domain: ttl - * - * License: GPLv2+ - * License URI: http://www.gnu.org/licenses/gpl-2.0.html - */ - -/** - * Built using yo wp-make:theme - * Copyright (c) 2014 10up, LLC - * https://github.com/lkwdwrd/generator-wp-make - */