IE7styles.css | archive.php | comments-popup.php | comments.php | crop.php | flere_kategorier.php | flere_nyheder.php | footer.php | frontpage.php | header.php | index.php | menu.php | page.php | posts.php | posts_content.php | right_sidebar.php | right_sidebar_single.php | single.php | single_page.php | style.css |
<div id="c_left">
<?php include("menu.php"); ?>
<?php
$front_page_stor = new WP_Query('showposts=1&cat=-179,-180,-181');
while ($front_page_stor->have_posts()) : $front_page_stor->the_post();
?>
<div id="main_pic">
<?php
if(get_post_custom_values("pic_538x484"))
{
$image = get_post_custom_values("pic_538x484");
$image = $image[0];
$img = "http://www.lewa.dk/blog/wp-content/themes/laustwilster/crop.php?i=".$image."&w=538&h=484&p=1.0";
}
else
{
$img = get_bloginfo('template_directory') . "/header.jpg";
}
?>
<a href="<?php the_permalink() ?>">
<img border="0" src="<?php echo $img; ?>" /></a>
</div>
<div class="front_page_main">
<?php #$my_query = new WP_Query('category_name=' . get_option('fp_bz_tips') . '&showposts=5');
$tekst = strip_tags(get_the_content());
$tekst_til_1 = substr($tekst,0,500);
$tekst_til_2 = substr($tekst,501,500);
$tekst_til_3 = substr($tekst,1001,500);
?>
<div class="lewa">lewa.dk</div>
<div class="title"><a href="<?php the_permalink() ?>">»<?php the_title(); ?></a></div>
<div class="transparent_layer_frontpage"></div>
<div class="main_content_box_1"><div class="author">Af <?php the_author(); ?> <?php the_date(); ?></div><?php echo $tekst_til_1; ?></div>
<div class="main_content_box_2"><?php echo $tekst_til_2; ?></div>
<div class="main_content_box_3"><?php echo $tekst_til_3; ?></div>
<div class="readon"><a href="<?php the_permalink() ?>">Læs mere</a></div>
<?php endwhile;?>
</div>
</div>