Simple lightbox gallery Responsive too (sort of)
v2 - added some responsiveness;)
A Pen by Konstantin Minevich on CodePen.
diff --git a/src/Command/GeneratorModuleCommand.php b/src/Command/GeneratorModuleCommand.php | |
index 48000a7..a7cda17 100644 | |
--- a/src/Command/GeneratorModuleCommand.php | |
+++ b/src/Command/GeneratorModuleCommand.php | |
@@ -49,6 +49,11 @@ class GeneratorModuleCommand extends GeneratorCommand | |
} | |
} | |
+ $module_path = $input->getOption('module-path'); | |
+ if(!is_dir($module_path)){ |
dsads |
#!/usr/bin/env ruby | |
# Usage | |
# $ docker-machine create my-machine123 -d virtualbox | |
# $ ruby <(curl -L https://git.io/vvvco) my-machine123 | |
# https://gist.github.com/mattes/4d7f435d759ca2581347 | |
require 'erb' | |
bootlocalsh = %Q(#/bin/bash |
$(document).ready(function() { | |
gitHubContributors(); | |
}); | |
function gitHubContributors() { | |
var | |
howMany = 70, | |
baseUrl = 'https://api.github.com/repos/hechoendrupal/DrupalConsole/contributors?per_page=' + howMany + '&callback=?', | |
$contributorsOutput = $("#contributors-list"), |
@import "../../../../bower_components/neat/app/assets/stylesheets/neat-helpers"; | |
// Neat Overrides | |
$column: em(100); | |
$gutter: em(20); | |
$grid-columns: 12; | |
$max-width: em(1400); | |
// Neat Breakpoints | |
$mobile-screen: em(480); |
[PHP] | |
;;;;;;;;;;;;;;;;;;; | |
; About php.ini ; | |
;;;;;;;;;;;;;;;;;;; | |
; PHP's initialization file, generally called php.ini, is responsible for | |
; configuring many of the aspects of PHP's behavior. | |
; PHP attempts to find and load this configuration from a number of locations. | |
; The following is a summary of its search order: |
<?php | |
$databases['default']['default'] = array ( | |
'database' => 'campgdl', | |
'username' => 'campgdl', | |
'password' => 'campgdl', | |
'prefix' => '', | |
'host' => '127.0.0.1', | |
'port' => '3306', | |
'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql', |
# Run this in your terminal to get the latest project version: | |
curl https://drupalconsole.com/installer -L -o drupal.phar | |
# Or if you don't have curl: | |
php -r "readfile('https://drupalconsole.com/installer');" > drupal.phar | |
# Accessing from anywhere on your system: | |
mv drupal.phar /usr/local/bin/drupal | |
# Apply executable permissions on the downloaded file: |
Simple lightbox gallery Responsive too (sort of)
v2 - added some responsiveness;)
A Pen by Konstantin Minevich on CodePen.