Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Submitted on September 24, 2015 at 02:38 PM

Section 1 (Text)

function ldl_scripts() {
	// CSS - SASS
	wp_enqueue_style('styles', get_stylesheet_uri());
	wp_enqueue_style('normalize', get_template_directory_uri().'/assets/css/normalize.css');
	wp_enqueue_style('lightbox', get_template_directory_uri().'/assets/css/lightbox.css');
	wp_enqueue_style('styles.css', get_template_directory_uri().'/assets/css/styles.css');

	// jQuery and other Javascript libs
	wp_deregister_script( 'jquery' );
  wp_register_script( 'jquery', ( 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js' ), false, null, true );
  wp_enqueue_script( 'jquery' );

	wp_register_script( 'maps', ( 'https://maps.googleapis.com/maps/api/js?v=3.exp?language=nl' ), false, null, true );
	wp_enqueue_script('maps');

	wp_enqueue_script( 'ImageScroll', get_template_directory_uri() . '/assets/js/jquery.imageScroll.min.js', array(), '1.0.0', true );
	wp_enqueue_script( 'Tweenmax', get_template_directory_uri() . '/assets/js/TweenMax.min.js', array(), '1.0.0', true );
	wp_enqueue_script( 'InView', get_template_directory_uri() . '/assets/js/jquery.inview.min.js', array(), '1.0.0', true );
	wp_enqueue_script( 'InView', get_template_directory_uri() . '/assets/js/lightbox.min.js', array(), '1.0.0', true );
	wp_enqueue_script( 'Main', get_template_directory_uri() . '/assets/js/app.js', array(), '1.0.0', true );
}