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 namespace Touchline\Repositories; | |
use Illuminate\Container\Container; | |
use Touchline\Repositories\RepositoryInterface; | |
/** | |
* Provides default implementations of the methods | |
* defined in the base repository interface. | |
*/ | |
abstract class AbstractRepository implements RepositoryInterface { |
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
// Dependencies | |
// ============ | |
var gulp = require('gulp'), | |
// Styles | |
sass = require('gulp-sass'), | |
autoprefix = require('gulp-autoprefixer'), | |
minify = require('gulp-minify-css'), | |
rename = require('gulp-rename'), |
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
// | |
// Just the styles for aligning images, but in scss | |
// | |
img { | |
&.alignleft { | |
float:left; | |
margin:0 1em 1em 0; | |
} | |
&.alignright { |
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
@mixin fa-icon($icon) | |
{ | |
content: $icon; | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} |
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
. | |
├assets | |
├── img | |
├── js | |
│ ├── src | |
│ │ ├── main.js | |
│ │ └── ... | |
│ └── vendor | |
│ └── ... | |
└── styles |