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
Traffic Light | |
Power On* | |
power loss -> Power Off | |
Green* | |
tick -> Yellow | |
Yellow | |
tick -> Red | |
Red | |
tick -> Green |
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
0x3d812dfc8e58b0b6e1fc813c768fcd5f316b2331 |
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
0x3D812DfC8e58b0B6e1fc813C768FCD5f316b2331 |
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
const Vue = new Vue(); |
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 | |
/** | |
* Implements hook_preprocess_node(). | |
*/ | |
function zero_preprocess_node(&$vars) { | |
// Replace classes array with nothing | |
$vars["classes_array"] = 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 | |
/** | |
* Implements hook_js_alter(). | |
*/ | |
function zero_js_alter(&$js) { | |
$exclude = array( | |
'settings' => FALSE, | |
'misc/jquery.js' => FALSE, | |
'misc/drupal.js' => FALSE, | |
'misc/jquery.once.js' => FALSE, |
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 | |
/** | |
* Implements hook_css_alter(). | |
*/ | |
function zero_css_alter(&$css) { | |
$exclude = array( | |
'modules/system/system.base.css' => FALSE, | |
'modules/system/system.messages.css' => FALSE, | |
'modules/system/system.theme.css' => FALSE, | |
'modules/system/system.menus.css' => FALSE, |
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
name = Zero | |
description = Zero out Drupal. | |
core = 7.x | |
regions[content] = Content | |
regions[help] = Help | |
regions[page_top] = Page Top | |
regions[page_bottom] = Page Bottom | |
regions[highlighted] = Highlighted | |
regions[sidebar_first] = Sidebar First | |
regions[sidebar_second] = Sidebar Second |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "scotch/box" | |
config.vm.network "private_network", ip: "192.168.33.10" | |
#config.vm.network "public_network", ip: "192.168.33.10" | |
config.vm.hostname = "scotchbox" | |
config.vm.synced_folder "../../Sites", "/var/www", type: "nfs" |
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
"*": | |
editor: | |
fontSize: 14 | |
lineHeight: 1.6 | |
showInvisibles: true | |
showIndentGuide: true | |
autoIndentOnPaste: false | |
invisibles: {} | |
core: | |
themes: [ |
NewerOlder