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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
# This sets the VM that we want to use - in this case, a classic Ubuntu 12.01 box | |
config.vm.box = "hashicorp/precise32" | |
# This makes the VM available in your browser on port 8080, and on MySQL's default port | |
config.vm.network "forwarded_port", guest: 80, host: 1234 #HTTP | |
#config.vm.network "forwarded_port", guest: 3306, host: 3306 #MySQL |
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
<div class="home-cta-content"> | |
<img src="<?php bloginfo('template_directory'); ?>/images/objective(purple).png" alt="mission" class="home-cta-image"/> | |
<?php $query = new WP_Query( array( "post_name" => "mission", "post_type" => "page" )); ?> | |
<?php if ($query->have_posts()) : while($query->have_posts()) : $query->the_post(); //start loop ?> | |
<?php the_title(); ?> |
NewerOlder