View gist:68c905ce692d62b0047e
This file contains 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 | |
$sources = array( | |
'data' => $modx->getOption('core_path') . 'components/cosmos/contentResources/', | |
); | |
$addContent = $modx->getOption('add_content', $options, false); | |
if ($addContent) { | |
$resources = include $sources['data'] . 'transport.resources.php'; | |
foreach ($resources as $resource) { | |
$modx->log(xPDO::LOG_LEVEL_INFO,'Installing content'); | |
$resource->save(); |
View gist:7fe27d6305cd23edfd83
This file contains 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 | |
/** | |
* Subpackage Resolver file for cosmos extra | |
* | |
* Copyright 2014 by Menno Pietersen info@themesmodx.com | |
* Created on 12-11-2014 | |
* | |
* @package cosmos | |
* @subpackage build | |
*/ |
View gist:394337f66ddd28ba7de9
This file contains 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
// create the module and name it DESIGNfromWITHIN | |
var DESIGNfromWITHIN = angular.module('DESIGNfromWITHIN', ['ngRoute', 'ngAnimate', 'ngSanitize']) | |
.config(function($sceProvider) { | |
// Completely disable SCE. For demonstration purposes only! | |
// Do not use in new projects. | |
$sceProvider.enabled(false); | |
}); | |
// configure our routes |
View Gruntfile.js
This file contains 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
/*global module:false*/ | |
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
concat: { | |
options: { | |
separator: ';', | |
}, | |
dist: { |
View Gulpfile.js
This file contains 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 sass = require('gulp-sass'); | |
var uglify = require('gulp-uglify'); | |
var rename = require('gulp-rename'); | |
var minifycss = require('gulp-minify-css'); | |
var concat = require('gulp-concat'); | |
var neat = require('node-neat').includePaths; | |
var browserSync = require('browser-sync'); | |
var paths = { |
View gist:aee459774d6a3e0715cb
This file contains 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
/* | |
* MODX Console Output | |
* | |
* @date 2014-05-11 20:32:09 | |
*/ | |
Attempting to install package with signature: corpo-1.0.8-pl | |
Package found...now preparing to install. | |
Grabbing package workspace... |
View Gulpfile.js
This file contains 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
/* | |
Gulpfile.js file for the tutorial: | |
Using Gulp, SASS and Browser-Sync for your front end web development - DESIGNfromWITHIN | |
http://designfromwithin.com/blog/gulp-sass-browser-sync-front-end-dev | |
Steps: | |
1. Install gulp globally: | |
npm install --global gulp |
View gist:6609045
This file contains 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
[[*flex_socialType:notempty=` | |
<meta property="og:type" content="[[*flex_socialType]]"> | |
`]] | |
[[*flex_socialType:isequalto=`book`:then=` | |
<meta property="book:author" content="[[*flex_socialAuthorUrl]]"> | |
`]] | |
[[*flex_socialType:isequalto=`article`:then=` | |
<meta property="article:author" content="[[*flex_socialAuthorUrl]]"> | |
`]] | |
<meta property="og:title" name="twitter:title" content="[[*pagetitle]]"> |
View index.html
This file contains 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
<span data-picture data-alt="GlarusSafe image" class="v4_landing_cta_bg_image"> | |
<span data-src="[[!getSiteURL]]assets/images/GlarusSafe/GlarusSafe_s.jpg"></span> | |
<span data-src="[[!getSiteURL]]assets/images/GlarusSafe/GlarusSafe_m.jpg" data-media="(min-width: 500px)"></span> | |
<span data-src="[[!getSiteURL]]assets/images/GlarusSafe/GlarusSafe_l.jpg" data-media="(min-width: 768px)"></span> | |
<span data-src="[[!getSiteURL]]assets/images/GlarusSafe/GlarusSafe_xl.jpg" data-media="(min-width: 980px)"></span> | |
<span data-src="[[!getSiteURL]]assets/images/GlarusSafe/GlarusSafe_xxl.jpg" data-media="(min-width: 1200px)"></span> | |
<!--[if (lt IE 9) & (!IEMobile)]> | |
<img src="[[!getSiteURL]]assets/images/GlarusSafe/GlarusSafe_l.jpg" alt="GlarusSafe image"> | |
<![endif]--> | |
<!-- Fallback content for non-JS browsers. Same img src as the initial, unqualified source element. --> |
View MODX - Wayfinder call with all options
This file contains 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
[[Wayfinder? | |
&startId=`0` | |
&displayStart=`0` | |
&level=`0` | |
&ignoreHidden=`0` | |
&ph=`0` | |
&debug=`0` | |
&hideSubMenus=`0` | |
&removeNewLines=`0` | |
&textOfLinks=`menutitle` |
NewerOlder