[alias]
# one-line log
l = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short
a = add
ap = add -p
c = commit --verbose
ca = commit -a --verbose
cm = commit -m
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 | |
| class ${Controller_Name}_Controller extends Base_Controller | |
| { | |
| public function __construct() | |
| { | |
| parent::__construct(); | |
| } | |
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
| <div class="catalog-wrapper"> | |
| <div class="row"> | |
| <div class="col-3-12"> | |
| <div class="panel"> | |
| <div class="panel-heading"> | |
| <h1>Categories</h1> | |
| </div> | |
| <div class="panel-body"> | |
| asdfasdf | |
| </div> |
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
| // | |
| // Module Dependencies | |
| // ================================================================== | |
| var gulp = require('gulp'), | |
| concat = require('gulp-concat'), | |
| uglify = require('gulp-uglify'), | |
| plumber = require('gulp-plumber'), | |
| sass = require('gulp-sass'); | |
| // |
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
| // | |
| // Require Modules | |
| //=================================================================== | |
| var gulp = require('gulp'), | |
| plugins = require('gulp-load-plugins')({ camelize: true }); | |
| var themeDir = "wp-content/themes/theme-name"; | |
| // | |
| // Styles |
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 livereload = require('gulp-livereload'); | |
| gulp.task('watch', function () { | |
| var server = livereload(); | |
| gulp | |
| .watch([ | |
| "wp-content/themes/ulc-org/**/*.*", | |
| "become-a-minister/**/*.*" |
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
| .grid { | |
| margin: 0 0 20px 0; | |
| } | |
| .grid:after { | |
| /* Or @extend clearfix */ | |
| content: ""; | |
| display: table; | |
| clear: both; |
NewerOlder