Skip to content

Commit c947f87

Browse files
committed
🎉 First commit
0 parents  commit c947f87

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+4645
-0
lines changed

.bowerrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "source/vendor"
3+
}

.editorconfig

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# editorconfig.org
2+
3+
# WordPress Coding Standards
4+
# https://make.wordpress.org/core/handbook/coding-standards/
5+
6+
root = true
7+
8+
[*]
9+
charset = utf-8
10+
end_of_line = lf
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
indent_style = space
14+
indent_size = 2
15+
16+
[*.md]
17+
trim_trailing_whitespace = false
18+
19+
[{.jscsrc,.jshintrc,*.json,*.yml}]
20+
indent_style = space
21+
indent_size = 2
22+
23+
[{*.txt,wp-config-sample.php}]
24+
end_of_line = crlf

.gitignore

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2+
# OS FILES ============================================================
3+
.DS_Store
4+
.DS_Store?
5+
.AppleDouble
6+
.LSOverride
7+
Icon?
8+
9+
## THUMBNAILS
10+
._*
11+
ehthumbs.db
12+
Thumbs.db
13+
14+
## EXTERNAL DISKS
15+
.Spotlight-V100
16+
.Trashes
17+
18+
19+
# DEPENDENCIES ========================================================
20+
node_modules
21+
bower_components
22+
source/vendor
23+
24+
25+
# NODE.JS / NPM =======================================================
26+
lib-cov
27+
*.seed
28+
*.log
29+
*.out
30+
*.pid
31+
npm-debug.log
32+
33+
34+
# SASS ================================================================
35+
.sass-cache

README.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#
2+
3+
## Teach me how to Squarespace.
4+
Clone this into the root of your project repo.
5+
```shell
6+
$ git clone https://github.com/stormwarning/dharma-sqsp.git
7+
```
8+
9+
Style and JavaScript source can live in `/source`, as well as images and fonts.
10+
11+
Edit the template files inside `/squarespace`.
12+
13+
```shell
14+
$ npm install
15+
```
16+
17+
With `gulp` and `node-squarespace-server` installed, we can work locally, and deploy to Squarespace with git. First, edit the `server` values in `template.conf`, then:
18+
19+
```shell
20+
$ sqs server --reload
21+
```
22+
23+
See [node-squarespace-server][node-sqsp] for more details on running the local server.
24+
25+
[node-sqsp]: https://github.com/NodeSquarespace/node-squarespace-server
26+
27+
To deploy up to Squarespace servers, it's easy!
28+
```shell
29+
$ gulp deploy
30+
```

gulpfile.js

+191
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,191 @@
1+
/* jshint node: true */
2+
/* jshint es5: true */
3+
'use strict';
4+
5+
// DEPENDENCIES =======================================================
6+
var gulp = require('gulp');
7+
var $ = require('gulp-load-plugins')();
8+
var browserSync = require('browser-sync');
9+
var reload = browserSync.reload;
10+
11+
12+
// FILE PATHS =========================================================
13+
var theme = 'squarespace';
14+
var source = {
15+
16+
styles: 'source/styles/**/*.scss',
17+
scripts: 'source/scripts/*.js',
18+
images: 'source/images/*.{png,jpg,gif}',
19+
svgs: 'source/images/*.svg',
20+
plugins: 'source/vendor'
21+
22+
};
23+
var assets = {
24+
25+
styles: theme + '/styles',
26+
scripts: theme + '/scripts',
27+
images: theme + '/assets/images',
28+
vendor: theme + '/assets/vendor'
29+
30+
};
31+
var plugins = [
32+
33+
source.plugins + '/fastclick/lib/fastclick.js'
34+
35+
];
36+
var vendor = [
37+
38+
// source.plugins + '/idangerous-swiper/dist/js/swiper.jquery.min.js',
39+
// source.plugins + '/idangerous-swiper/dist/css/swiper.min.css',
40+
41+
];
42+
43+
44+
// AUTOPREFIXER CONFIG ================================================
45+
var AUTOPREFIXER_BROWSERS = [
46+
'ie >= 9',
47+
'ie_mob >= 10',
48+
'ff >= 30',
49+
'chrome >= 34',
50+
'safari >= 7',
51+
'opera >= 23',
52+
'ios >= 7',
53+
'android >= 4.4',
54+
'bb >= 10'
55+
];
56+
57+
58+
// DEPLOY TO SQUARESPACE ==============================================
59+
gulp.task( 'deploy', $.shell.task(
60+
[
61+
'git init',
62+
'git checkout --orphan ' + theme,
63+
'git add --all',
64+
'git commit --quiet --message "Deploying to Squarespace"',
65+
'git push --prune --force https://stormwarning-beta.squarespace.com/template.git ' + theme + ':master',
66+
'rm -rf .git'
67+
],
68+
{
69+
cwd: './squarespace'
70+
}
71+
));
72+
73+
74+
// COMPILE STYLESHEETS ================================================
75+
gulp.task('styles', function () {
76+
77+
return gulp.src('source/styles/*.scss')
78+
.pipe($.changed('styles', {
79+
extension: '.scss'
80+
}))
81+
.pipe($.sass({
82+
precision: 10,
83+
onError: console.error.bind(console, 'SASS error:')
84+
}))
85+
.pipe($.autoprefixer({
86+
browsers: AUTOPREFIXER_BROWSERS
87+
}))
88+
.pipe($.csso())
89+
.pipe(gulp.dest(assets.styles))
90+
.pipe($.size({title: 'styles'}));
91+
92+
});
93+
94+
95+
// LINT & CONCATENATE JS ==============================================
96+
gulp.task('scripts', function () {
97+
98+
return gulp.src(source.scripts)
99+
.pipe($.jshint())
100+
.pipe($.jshint.reporter('jshint-stylish'))
101+
.pipe($.concat('main.js'))
102+
.pipe($.uglify())
103+
.pipe(gulp.dest(assets.scripts));
104+
105+
});
106+
107+
gulp.task('plugins', function () {
108+
109+
return gulp.src(plugins)
110+
.pipe($.concat('plugins.js'))
111+
.pipe($.uglify())
112+
.pipe(gulp.dest(assets.scripts))
113+
.pipe($.size({title: 'plugins'}));
114+
115+
});
116+
117+
gulp.task('modernizr', function () {
118+
119+
return gulp.src(source.scripts)
120+
.pipe($.modernizr({
121+
options: [
122+
'setClasses'
123+
],
124+
tests: [
125+
'flexbox',
126+
'flexboxlegacy',
127+
'flexboxtweener'
128+
],
129+
crawl: false
130+
}))
131+
.pipe($.uglify())
132+
.pipe(gulp.dest(assets.scripts));
133+
134+
});
135+
136+
137+
// COPY ONE-OFF VENDOR SCRIPTS ========================================
138+
gulp.task('vendor', function () {
139+
140+
return gulp.src(vendor)
141+
.pipe(gulp.dest(assets.vendor))
142+
.pipe($.size({title: 'vendor'}));
143+
144+
});
145+
146+
147+
// OPTIMISE IMAGES ====================================================
148+
gulp.task('images', function () {
149+
150+
return gulp.src(source.images)
151+
.pipe($.changed(assets.images))
152+
.pipe($.imagemin({
153+
optimizationLevel: 3,
154+
progressive: true,
155+
interlaced: true
156+
}))
157+
.pipe(gulp.dest(assets.images));
158+
159+
});
160+
161+
162+
// CREATE SVG SPRITE ==================================================
163+
gulp.task('sprite', function () {
164+
165+
return gulp.src(source.svgs)
166+
.pipe($.svgSprite({
167+
mode: {
168+
symbol: {
169+
dest: './',
170+
sprite: 'sprite.symbol.svg'
171+
}
172+
}
173+
}))
174+
.pipe(gulp.dest(assets.images));
175+
176+
});
177+
178+
179+
// WATCH FOR CHANGES AND RELOAD =======================================
180+
gulp.task('serve', ['styles'], function () {
181+
browserSync({
182+
notify: false,
183+
logPrefix: '☸',
184+
server: './'
185+
});
186+
187+
gulp.watch([theme + '/**/*.{block,conf,region,list,preset}'], reload);
188+
gulp.watch([source.styles], ['styles', reload]);
189+
gulp.watch([source.scripts], ['scripts']);
190+
gulp.watch([source.images], ['images', reload]);
191+
});

package.json

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "tidaltheory",
3+
"description": "DESCRIPTION",
4+
"version": "0.1.0",
5+
"scripts": {
6+
"postinstall": "bower install"
7+
},
8+
"author": {
9+
"name": "AUTHOR",
10+
"url": "http://AUTHOR.com/"
11+
},
12+
"homepage": "http://HOMEPAGE.com/",
13+
"repository": {
14+
"type": "git",
15+
"url": "git://URL.git"
16+
},
17+
"dependencies": {},
18+
"devDependencies": {
19+
"browser-sync": "^2.9.6",
20+
"gulp": "^3.9.0",
21+
"gulp-autoprefixer": "^3.0.2",
22+
"gulp-changed": "^1.3.0",
23+
"gulp-concat": "^2.6.0",
24+
"gulp-csso": "^1.0.0",
25+
"gulp-if": "^1.2.5",
26+
"gulp-imagemin": "^2.3.0",
27+
"gulp-load-plugins": "^0.10.0",
28+
"gulp-modernizr": "0.0.0",
29+
"gulp-replace": "^0.5.4",
30+
"gulp-sass": "^2.0.4",
31+
"gulp-shell": "^0.4.3",
32+
"gulp-size": "^2.0.0",
33+
"gulp-svg-sprite": "^1.2.10",
34+
"gulp-uglify": "^1.4.1",
35+
"node-squarespace-server": "^0.4.13"
36+
},
37+
"private": true
38+
}

squarespace/.gitignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
# OS FILES ============================================================
3+
.DS_Store
4+
.DS_Store?
5+
.AppleDouble
6+
.LSOverride
7+
Icon?
8+
9+
## THUMBNAILS
10+
._*
11+
ehthumbs.db
12+
Thumbs.db
13+
14+
## EXTERNAL DISKS
15+
.Spotlight-V100
16+
.Trashes
17+
18+
19+
# DEPENDENCIES ========================================================
20+
.sqs-cache

squarespace/assets/info-icon.eot

1.58 KB
Binary file not shown.

squarespace/assets/info-icon.svg

+18
Loading

squarespace/assets/info-icon.ttf

1.42 KB
Binary file not shown.

squarespace/assets/info-icon.woff

1.07 KB
Binary file not shown.

squarespace/assets/momentum-bg.jpg

235 KB
Loading

squarespace/assets/readme-blog.jpg

138 KB
Loading
87.9 KB
Loading
79.4 KB
Loading
76.9 KB
Loading
Loading
11.3 KB
Loading
117 KB
Loading
Loading
98.2 KB
Loading
83.6 KB
Loading

squarespace/assets/readme-index.jpg

67.7 KB
Loading
79.4 KB
Loading
70.9 KB
Loading

squarespace/assets/readme-tablet.jpg

135 KB
Loading

0 commit comments

Comments
 (0)