Skip to content

Commit

Permalink
Merge branch 'IDI-104'
Browse files Browse the repository at this point in the history
  • Loading branch information
acheetham committed Jun 3, 2013
2 parents 48f660b + cdf6835 commit 4e69814
Show file tree
Hide file tree
Showing 41 changed files with 69 additions and 4 deletions.
1 change: 1 addition & 0 deletions front-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<div class="fl-col-flex4 front-cols">
<?php
$the_query = new WP_Query( array('posts_per_page'=>2) );

while ($the_query->have_posts()):
$the_query->the_post();
global $more;
Expand Down
Binary file added images/arrow_sm_blue_right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/circle_check_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/gear_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/idi_logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/mail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/people/Darren-Lawless.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/people/Deb-Fels.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/people/Francois-Desjardins.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/people/Jutta-Treviranus.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/people/Matt-Ratto.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/people/Robert-Luke.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/people/Ron-Owston.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/phone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/arrow_sm_black_right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/arrow_sm_yellow_right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/circle_check_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/circle_check_yellow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/footer_sep_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/footer_sep_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/footer_sep_yellow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/idi_logo_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/idi_logo_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/idi_logo_yellow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/mail_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/mail_yellow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/phone_black.png
Binary file added images/themes/phone_yellow.png
Binary file added images/themes/triangle_down_blackpng.png
Binary file added images/themes/triangle_down_yellow.png
Binary file added images/themes/triangle_up_black.png
Binary file added images/themes/triangle_up_yellow.png
Binary file added images/themes/twitter_bird_black.png
Binary file added images/themes/twitter_bird_white.png
Binary file added images/themes/twitter_bird_yellow.png
Binary file added images/tilebg.jpg
Binary file added images/triangle_up_white.png
7 changes: 3 additions & 4 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>

<div class="post">
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="date"><?php the_time('F jS, Y') ?></div>

<div class="date"><?php the_time('F jS, Y') ?></div>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="entry">
<?php the_post_thumbnail(); ?>
<?php the_content(); ?>
<?php the_content("<div class='fl-site-read-more'>read more</div>"); ?>
</div>
</div>
<?php endwhile; ?>
Expand Down
20 changes: 20 additions & 0 deletions sidebar-news.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,26 @@
?>
</ul>

<?php
query_posts('tag=video&posts_per_page=5'); // query to show posts tagged video;
if (have_posts()) :
?>
<h3>Recent Videos</h3>
<ul>
<?php
while (have_posts()) :
the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</li>
<?php
endwhile;
endif;
wp_reset_query();
?>
</ul>


</div>

<?php get_template_part("mailing-list-form"); ?>
Expand Down
10 changes: 10 additions & 0 deletions sidebar-pagebits.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php
$sboptions = array(
'order' => 'title-content-widgets',
'before_title' => '',
'after_title' => '',
'before_content' => '',
'after_content' => '');
coresidebar($sboptions);

?>
35 changes: 35 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ a:focus,
margin-right: auto;
}

/* Main Navigation - current item, parent item */
/*
.fl-site-nav-main .current-menu-item a,
.fl-site-nav-main .current-page-ancestor a {
color: #008cbb;
padding-bottom: 9px;
*/

/* Page-wide styles */
html {
height: 100%;
Expand Down Expand Up @@ -1781,3 +1789,30 @@ a.idi-project-link {
.idi-workshops-sidebar {
margin-top: 6em;
}

/* Style to accomodate the Video Player */
.entry .fl-videoPlayer-main {
height: 22.5em;
}

.entry .fl-videoPlayer-video-element {
background-color: #000000;
}

.entry .fl-videoPlayer-video-element,
.entry .fl-videoPlayer-video-play,
.entry .fl-videoPlayer-overlay {
max-width: 27.75em;
}

:-moz-full-screen .fl-videoPlayer-video-element,
:-moz-full-screen .fl-videoPlayer-video-play,
:-moz-full-screen .fl-videoPlayer-overlay {
max-width: none;
}

:-webkit-full-screen .fl-videoPlayer-video-element,
:-webkit-full-screen .fl-videoPlayer-video-play,
:-webkit-full-screen .fl-videoPlayer-overlay {
max-width: none;
}

0 comments on commit 4e69814

Please sign in to comment.