Not found
+No {{ type }} posts found in category: {{ category }} {{ categoryID }}
+From bcab2c94b89031780443432e4244f80b446f948e Mon Sep 17 00:00:00 2001
From: jennbrewr
Hi there,
+Sorry to hear you had a bad experience with the Ionic Band. We're sending you a replacement :)
\ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..fc11675 --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,31 @@ +// Getting started with gulp: +// https://markgoodyear.com/2014/01/getting-started-with-gulp/ + +// Load plugins +var gulp = require('gulp'), + uglify = require('gulp-uglify'), + concat = require('gulp-concat'), + rename = require('gulp-rename'), + notify = require('gulp-notify'); + +// Scripts +gulp.task('scripts', function() { + return gulp.src('resources/js/**/*.js') + .pipe(concat('main.js')) + .pipe(gulp.dest('resources/js')) + .pipe(rename({ suffix: '.min' })) + .pipe(uglify()) + .pipe(gulp.dest('resources/js')) + .pipe(notify({ message: 'Scripts task complete' })); +}); + +// Watch +gulp.task('watch', function() { + + // Watch .js files + gulp.watch('resources/js/*.js', ['scripts']); + +}); + +// Default task +gulp.task('default', ['scripts', 'watch']); \ No newline at end of file diff --git a/lemonsync.cfg b/lemonsync.cfg deleted file mode 100644 index e69de29..0000000 diff --git a/options.json b/options.json new file mode 100644 index 0000000..76f8734 --- /dev/null +++ b/options.json @@ -0,0 +1,128 @@ +{ + "settings": { + "logoImage": { + "type": "image", + "title": "Global: Logo Image", + "default": "@/images/logo.png" + }, + "faviconImage": { + "type": "image", + "title": "Favicon Image", + "default": "@images/favicon.png", + "comment": "Upload your favicon. Recommended dimmensions of 16px by 16px. You must use a .png file." + }, + "title": { + "type": "text", + "title": "title of your store", + "default": "Ventro" + }, + "fbCommentsAppIDText": { + "type": "text", + "title": "Facebook Comments App ID", + "default": "123", + "comment": "For Facebook product reviews/comments to work, first create an app in Facebook, then paste in your app ID." + }, + "socialFacebook": { + "type": "text", + "title": "Facebook URL", + "default": "https://www.facebook.com/lemonstand" + }, + "socialTwitter": { + "type": "text", + "title": "Twitter URL", + "default": "https://twitter.com/lemonstand" + }, + "socialInstagram": { + "type": "text", + "title": "Instagram URL", + "default": "https://instagram.com/lemonstand" + }, + "socialMedium": { + "type": "text", + "title": "Medium URL", + "default": "https://medium.com" + }, + "ajaxChimp": { + "type": "text", + "title": "MailChimp campaign URL", + "default": "http://blahblah.us1.list-manage.com/subscribe/post?u=5afsdhfuhdsiufdba6f8802&id=4djhfdsh9" + }, + "homeHeaderImage": { + "type": "image", + "title": "Home Header Image", + "default": "@/images/main-bg.jpg" + }, + "homeHeaderTitle": { + "type": "text", + "title": "Home Header Text", + "default": "Ingridglow" + }, + "homeHeaderSubtitle": { + "type": "text", + "title": "Home Header SubTitle", + "default": "The new way to tell time." + }, + "homeHeaderButtonURL": { + "type": "text", + "title": "Home Header category url name", + "default": "watches", + "comment": "Make sure the URL name is exactly the category Url name" + }, + "homeHeaderButtonTitle": { + "type": "text", + "title": "Home Header Button Text", + "default": "Shop Watches" + }, + "homeThreeCats": { + "type": "checkbox", + "title": "Home Page 3 Category Blocks", + "default": "1", + "comment": "Check to show" + }, + "homeCatLeft": { + "type": "text", + "title": "Home category 1: url name", + "default": "fitness", + "comment": "Make sure the URL name is exactly the category Url name" + }, + "homeCatLeftImg": { + "type": "image", + "title": "Home category 1: image", + "default": "@/images/box-health.jpg", + "comment": "Recommended size: 478x349" + }, + "homeCatMiddle": { + "type": "text", + "title": "Home category 2: url name", + "default": "lifestyle", + "comment": "Make sure the URL name is exactly the category Url name" + }, + "homeCatMiddleImg": { + "type": "image", + "title": "Home category 2: image", + "default": "@/images/box-lifestyle.jpg", + "comment": "Recommended size: 478x349" + }, + "homeCatRight": { + "type": "text", + "title": "Home category 3: url name", + "default": "home", + "comment": "Make sure the URL name is exactly the category Url name" + }, + "homeCatRightImg": { + "type": "image", + "title": "Home category 3: image", + "default": "@/images/box-home.jpg", + "comment": "Recommended size: 478x349" + }, + "productSocial": { + "type": "checkbox", + "title": "Include Social Sharing Buttons on product pages", + "default": "1", + "comment": "Check to show" + } + }, + "pages": { + "404": "404" + } +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..17fba20 --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "lscloud-theme-ventro", + "version": "1.0.0", + "description": "A theme for LemonStand 2", + "main": "theme.yaml", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/lemonstand/lscloud-theme-ventro.git" + }, + "author": "Daniel Park", + "license": "MIT", + "bugs": { + "url": "https://github.com/lemonstand/lscloud-theme-ventro/issues" + }, + "homepage": "https://github.com/lemonstand/lscloud-theme-ventro#readme", + "devDependencies": { + "gulp": "^3.9.0", + "gulp-concat": "^2.6.0", + "gulp-notify": "^2.2.0", + "gulp-rename": "^1.2.2", + "gulp-uglify": "^1.2.0" + } +} diff --git a/pages/.DS_Store b/pages/.DS_Store index b51ff788f85243c3083fcc2a1bd8701559b1e140..48913b6d0cca97f566b9f9292fda4b54eca6e8bb 100644 GIT binary patch literal 10244 zcmeHMO>Y}T7=FignoSxZN6-WGvd18m%C6lex4OZt!~rS7s1>3R{MC3{$7|W^M8&dX zi5pUHJ#YqExbY{-m&An|+&RFF6Nd^ZJTp64=F6$nLz}~lwfoNQ`@A#HJhL;qGbSRo zJ?WH*LLv%qa9do%$&t99A6ClAJ6B;D;wf&o`f&?aMGNb1cm=!yUIDLwSHLT9IuyV= zo2TGxYW>+O;1%!+WD4;4A;iILP1<>C#nge5SOUNna9bqg#m7Hv$Zx>bq@AZ0caT^b z3Y&&9xx`>{?ZDD-_-hhBPi-1bOw^2WWX(*jP?%hLuu#B>)l%!vUIDLwtpH!U=c!61 zs=m`#*YE5-c)mCiNrXvMf3MtV$NR&ysNA*xNo {{ type }} posts found in category: {{ category }} {{ categoryID }}
+Published {{ post.published_on | date("F j, Y") }} In {{ post.type }}
+Monday-Friday 1-9