This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. | |
For licensing, see LICENSE.md or http://ckeditor.com/license | |
*/ | |
CKEDITOR.addTemplates("default", { | |
imagesPath: CKEDITOR.getUrl("/build/wygwam/"), | |
templates: [{ | |
title: "Image on left with caption", | |
image: "img-left.png", | |
description: "Add an image on the left with caption", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Fieldframe settings | |
--------------------------------------------------------------------*/ | |
$conf['ft_path'] = $conf['server_path']."/".$conf['system_folder']."/extensions/fieldtypes/"; | |
$conf['ft_url'] = $conf['cp_url']."/extensions/fieldtypes/"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$margin-sides : ("A": "margin", "T": "margin-top", "R": "margin-right", "B": "margin-bottom", "L": "margin-left") | |
$padding-sides : ("A": "padding", "T": "padding-top", "R": "padding-right", "B": "padding-bottom", "L": "padding-left") | |
$sizes : (0: 0, 1: 1em, 2: 2em, 3: 3em, 4: 4em) | |
@each $side, $property in $margin-sides | |
@each $key, $value in $sizes | |
.M-#{$side}--#{$key} | |
#{$property}: $value | |
@each $side, $property in $padding-sides |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title: Kitchen Sink | |
fields: | |
replicator: | |
type: replicator | |
display: Replicator | |
instructions: This is a `replicator` field. | |
sets: | |
quote: | |
display: Quote | |
instructions: Something someone said. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Local Config Override | |
* | |
* Overrides added here will get appended to the end of the | |
* custom config array for all environments: '*' | |
*/ | |
return array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Local database info | |
return array( | |
'server' => 'localhost', | |
'user' => 'root', | |
'password' => 'root', | |
'database' => 'scotchbox' | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SASS style sheet */ | |
// Palette color codes */ | |
// Palette URL: http://paletton.com/#uid=30i0u0krCufhdDCmgvUu-oLyPjB */ | |
// Feel free to copy&paste color codes to your application */ | |
// As hex codes */ | |
$color-primary-0: #F16421; // Main Primary color */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// the config file for Gulp tasks | |
// the majority of settings for inidividual tasks resides here | |
// there are a couple of tasks where settings are declared right | |
// inside their resepctive task.js file for one reason or another | |
// if you're adding a new task, create a new task.js file and set | |
// the appropriate module export settings appropriately | |
var dest = './data/drupal7/sites/all/themes/'; | |
var drupalThemeName = 'cignaGlobal'; | |
var drupalThemePath = dest + drupalThemeName; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var browserSync = require('browser-sync'); | |
var gulp = require('gulp'); | |
var config = require('../config').browserSync; | |
gulp.task('browserSync', function() { | |
browserSync(config); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var browserSync = require('browser-sync'); | |
var sass = require('gulp-sass'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var handleErrors = require('../util/handleErrors'); | |
var config = require('../config').sass; | |
var autoprefixer = require('gulp-autoprefixer'); | |
gulp.task('sass', function () { | |
return gulp.src(config.src) |