Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
<?php /* Template Name Posts: Fullwidth */ $k_option['custom']['bodyclass'] = "class='fullwidth'"; //$k_option['custom']['bodyclass'] = ""; get_header(); ?> <div id="main"> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); // start loop // THIS PAGE CAN ONLY DISPLAY FULLWIDTH PREVIEW PICTURES (940px * 420px) //check if we got a previe picture, and which one should be taken (image resizing with "tim thumb" on? then we can take the big one and resize it) $preview_big = get_post_meta($post->ID, "_preview_big", true); $preview_medium = get_post_meta($post->ID, "_preview_medium", true); //defaults: $preview = $preview_big; $lightbox = ''; $link = false; $link_url = $preview_big; if (!kriesi_is_file($preview_big,'image')) {$preview = $preview_medium;} // the kriesi_build_image function used here checks if the image should be resized. // the function is located in framework/helper_functions $preview = kriesi_build_image(array('url'=>$preview,'height'=>'420','width'=>'940','lightbox'=>$lightbox,'link'=>$link)); ?> <div class='entry'> <?php echo $preview; ?> <h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2> <?php the_content(); ?> <?php edit_post_link('Edit', '', ''); ?> </div><!--end entry--> <?php endwhile; else: ?> <p>Sorry, no posts matched your criteria.</p> <!--do not delete--> <?php endif; ?> </div><!-- end content --> <?php get_sidebar(); ?> </div><!--end main--> <?php get_footer(); ?> |