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
<template> | |
<div id="app"> | |
<vue-toastr ref="toastr"></vue-toastr> | |
<span style="position: absolute; top: -15px; left: 0;"> | |
<img id="inner__logo" | |
src="~@/assets/images/inner_logo.png" | |
alt="ADC Logo" style="margin-top: 10px;"> | |
</span> | |
<span style="position: absolute; top: 12px; right: 10px;"> |
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$scotch-color-key: 'base' !default; | |
$scotch-colors: ( | |
'primary': ( | |
'base': #8e3329, |
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
@extends('layouts.app') | |
@section('title', 'ADC Trial') | |
@push('styles') | |
<link href="/css/register.css" rel="stylesheet"> | |
@endpush | |
@section('body_class', 'short__page'); |
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
<template> | |
<div class="row" style="width: 90%; margin:20px auto 0 auto;"> | |
<div class="col-md-4"> | |
<div class="main-box infographic-box colored aqua-bg" @click="clkBox('1', $event)"> | |
<div class="headline"> | |
<span class="title">Basic</span> | |
<br> | |
<span class="cost pull-right">$75,000</span> | |
</div> | |
</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
var elixir = require('laravel-elixir'); | |
var gulp = require('gulp'); | |
var shell = require('gulp-shell'); | |
var Task = elixir.Task; | |
var paths = { | |
"assets": "./resources/assets/", | |
"vendor": "./resources/assets/vendor/", | |
"public": "./public/" |
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 | |
/** | |
* A helper file for Laravel 5, to provide autocomplete information to your IDE | |
* Generated for Laravel 5.1.1 (LTS) on 2015-06-11. | |
* | |
* @author Barry vd. Heuvel <[email protected]> | |
* @see https://github.com/barryvdh/laravel-ide-helper | |
*/ | |
namespace { |
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
will create a bootstrapped app named framework (change name in step one (line 3)) | |
mkdir framework && cd $_ | |
nano .bowerrc and add the following: | |
{ | |
"directory": "/lib/" | |
} | |
bower init | |
npm init --yes | |
npm install --save-dev gulp gulp-concat gulp-angular-filesort gulp-strip-line gulp-sass gulp-angular-templatecache del yargs gulp-if gulp-jscs gulp-jshint gulp-sourcemaps gulp-uglify gulp-minify-css gulp-notify gulp-util gulp-shell gulp-plumber gulp-task-listing gulp-livereload gulp-jasmine run-sequence |
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 args = require('yargs').argv; | |
var config = require('./gulp.config')(); | |
var del = require('del'); | |
var iff = require('gulp-if'); | |
var jscs = require('gulp-jscs'); | |
var jshint = require('gulp-jshint'); | |
var sass = require('gulp-sass'); | |
var concat = require('gulp-concat'); | |
var sourcemaps = require('gulp-sourcemaps'); |
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.exports = function() { | |
var config = { | |
temp: './.tmp/', | |
index: './index.html', | |
alljs: [ | |
'./app/**/*.js', | |
'./*.js' | |
], |
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
Show hidden characters
{ | |
"bitwise": true, | |
"curly": true, | |
"eqeqeq": true, | |
"es3": false, | |
"forin": false, | |
"freeze": true, | |
"immed": true, | |
"indent": 4, | |
"latedef": "nofunc", |