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 | |
/** | |
* Page Template | |
* | |
* … | |
* | |
* @package Thematic | |
* @subpackage Templates | |
*/ | |
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
$('.nav li a').click(function() { | |
// remove the extra classes before adding the current clicked class | |
$('.nav li a').each(function(i, el) { // iterate through all of the menu items | |
// get the current elements class | |
var removeClass = $(el).attr('class'); | |
// remove it from the body, if it has the class. | |
if($('body').hasClass(removeClass)) $('body').removeClass(removeClass); | |
}); |
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
$('.bxslider').bxSlider({ | |
pagerCustom: '#bx-pager', | |
mode: 'horizontal', | |
startSlide: 0, | |
controls: 'false', | |
onSlideAfter: function($slideElement, oldIndex, newIndex) { | |
var newClass = $slideElement.attr('class'); | |
var oldClass = $('.bxslider li')[oldIndex].attr('class'); | |
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 = { | |
development: { | |
root: require('path').normalize(__dirname + '/..'), | |
app: { | |
name: 'AppName Development', | |
nodefly: 'AppName Dev', | |
iosversion: "2.0.0", | |
androidversion: "0.6.0" | |
}, | |
db: 'mongodb://localhost/appdev', |
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
// Load configurations | |
var env = process.env.NODE_ENV || 'development' | |
, config = require('./config/config')[env]; | |
// Bootstrap db connection | |
mongoose.connect(config.db); | |
relations.use(relations.stores.redis, {client: redis.createClient(config.redis.port, config.redis.host)}); | |
// Setup App Version |
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 (grunt) { | |
grunt.loadNpmTasks('grunt-contrib-concat'); | |
grunt.loadNpmTasks('grunt-contrib-jshint'); | |
grunt.loadNpmTasks('grunt-contrib-uglify'); | |
grunt.loadNpmTasks('grunt-contrib-clean'); | |
grunt.loadNpmTasks('grunt-contrib-copy'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
grunt.loadNpmTasks('grunt-recess'); | |
grunt.loadNpmTasks('grunt-karma'); |
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
..+ .:. | |
..+8N+. .+$8+. | |
.++NNNN+=. .,+NNNN++.. | |
+7NNNNNN?+. ...+NNNNNNN+. | |
..+NNNN..NNN++. .,+NNN...NNN+. | |
. +DNN.....NNN+.. .+NNN ...NNN+. | |
..+DNN ..N7. NNN+. +NNN. .NN..NNN+. | |
++NN..:NNN .NN?+ .:?NN. .NNNO..NN7+ |
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
#wpcf7-f492-p493-o1 span.wpcf7-list-item { | |
display:block; | |
} |
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
<body> | |
<div class="l-canvas type_wide col_cont headerpos_fixed"> | |
<div class="l-canvas-h"> | |
<div class="l-header type_fixed"> | |
<?php do_action('uconn_banner'); ?> | |
</div> | |
</div> | |
<div class="l-header-h"> | |
<!— everything else for the header —> | |
</div> |