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
# ignore all files starting with . | |
.* | |
wp-config.php | |
# track this file .gitignore (i.e. do NOT ignore it) | |
!.gitignore | |
# track .editorconfig file (i.e. do NOT ignore it) | |
!.editorconfig |
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
# ----------------------------------------------------------------- | |
# .gitignore for WordPress | |
# Bare Minimum Git | |
# http://ironco.de/bare-minimum-git/ | |
# ver 20150227 | |
# | |
# This file is tailored for a WordPress project | |
# using the default directory structure | |
# | |
# This file specifies intentionally untracked files to ignore |
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
also...here's the current tech stack: | |
Web Tier | |
Presentation Tier - AJAX, Javascript, jQuery, BootStrap, Knockout, Raphael JS and Popcorn JS, Flowplayer | |
Business Tier - Grails, Spring, NodeJS | |
Persistence - Hibernate, GORM | |
Application Servers - Apache Tomcat, JBoss, NodeJS | |
Databases - MongoDB, Postgresql | |
Cloud - Amazon EC2 | |
Integration Services - Webservices (NodeJS) | |
Languages - Groovy, Java |
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
/* | |
(function() { | |
// var app = angular.module('archiveCards', ['ngRoute', 'ngResource', 'simplePagination']); | |
var app = angular.module('archiveCards', ['ngRoute', 'ngResource']); | |
// set up configuration variables |
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
.listing-img-inner { | |
float: left; | |
display: block; | |
position: relative; | |
width: 100%; | |
// height: 100px; | |
background: @stone-blue; | |
overflow: hidden; | |
.small-up(@screen-tablet { |
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
/* This */ | |
.content ul{ | |
margin-bottom: 20px; | |
} | |
/* To This */ | |
.content ul, | |
.content ol{ |
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
.listing-top { | |
margin: 25px -10px 20px -10px; | |
.desktop(@screen-desktop { | |
height: 480px; | |
}); | |
.tabs-outer { |
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 App = Ember.Application.create({ | |
rootElement: '#ember-app' | |
}); | |
App.Store = DS.Store.extend(); | |
App.ApplicationAdapter = DS.RESTAdapter.extend(); | |
DS.RESTAdapter.reopen({ |
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
<script type="text/x-handlebars"> | |
<div class="container main-wrap"> | |
<div class="content row"> | |
<div class="facets-outer"> | |
<div class="row facets-inner"> | |
<nav class="navbar navbar-facets" role="navigation"> | |
<div class="container-fluid"> |
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
/* | |
function emberUp(data){ | |
var Properties = Ember.Application.create({ | |
rootElement: '#ember-app' | |
}); |