Created
January 15, 2016 16:28
-
-
Save masonjames/74e292c896069324a35c to your computer and use it in GitHub Desktop.
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 get_header(); ?> | |
| <div id="sliderinfo"> | |
| <div id="newsslides"> | |
| <?php $news = new WP_Query('post_type=news&showposts=3'); ?> | |
| <?php if($news->have_posts()) : ?><?php while($news->have_posts()) : $news->the_post(); ?> | |
| <div class="newsitem"> | |
| <?php the_excerpt(); ?> | |
| <a class="details" href="<?php the_permalink(); ?>"></a> | |
| </div> | |
| <?php endwhile; endif; ?> | |
| </div> | |
| <a id="next" href="#"></a> | |
| <a id="prev" href="#"></a> | |
| </div> | |
| <div id="left"> | |
| <div class="left"> | |
| <h2><span>About Us</span></h2> | |
| <a href="<?php bloginfo('url'); ?>/about-us/board-staff/"><img class="border" src="<?php bloginfo('template_directory'); ?>/images/img_home-aboutus.png" /></a> | |
| <p>We believe in a vibrant and thoughtful democracy for the people of Bhutan, supported by strong educational practices and effective social services.</p> | |
| <a class="readmore" href="<?php bloginfo('url'); ?>/about-us/vision-mission-values/">Read More</a> | |
| </div><!-- .left --> | |
| <div class="right"> | |
| <h2><span>Teach</span></h2> | |
| <a href="<?php bloginfo('url'); ?>/programs/teach-in-bhutan/"><img class="border" src="<?php bloginfo('template_directory'); ?>/images/img_home-teach.jpg" /></a> | |
| <p>Develop new teaching techniques, share expertise with local teachers, explore Bhutanese culture and steep yourself in the practice of Gross National Happiness.</p> | |
| <a class="readmore" href="<?php bloginfo('url'); ?>/programs/teach-in-bhutan/">Read More</a> | |
| </div><!-- .right --> | |
| <div class="cboth"></div> | |
| <div class="videos" style="padding-top: 46px; padding-bottom: 10px"> | |
| <h2><span>Videos</span></h2> | |
| <iframe width="627" height="353" src="http://www.youtube.com/embed/<?php echo get_option('bcf_youtube'); ?>" frameborder="0" allowfullscreen></iframe> | |
| <a href="http://www.youtube.com/bhutancanada" target="_new">Watch all of our videos on YouTube</a> | |
| </div> | |
| </div><!-- #left --> | |
| <div id="right"> | |
| <h2><span>Donate</span></h2> | |
| <a href="https://www.bhutancanada.org/donations/"><img class="border" src="<?php bloginfo('template_directory'); ?>/images/img_home-donate.jpg" /></a> | |
| <p>The Bhutan Canada Foundation relies on generous donors like you. Support our work in Bhutan by making a financial contribution today.</p> | |
| <a class="donatehome" href="https://www.bhutancanada.org/donations/">Donate Now</a> | |
| <div class="box" style="padding-top: 50px;"> | |
| <h2><span>Apply to Teach in Bhutan</span></h2> | |
| <div class="apply"> | |
| <img src="<?php bloginfo('template_directory'); ?>/images/img_apply.jpg" /> | |
| <a class="apply" href="http://www.teachinbhutan.org/apply" target="_blank">Apply</a> | |
| </div> | |
| </div> | |
| <div class="box"> | |
| <h2><span>I'd Like More Information</span></h2> | |
| <?php gravity_form(4, false, false); ?> | |
| </div> | |
| </div><!-- #right --> | |
| <?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment