- Nueva portada web

git-svn-id: https://192.168.0.254/svn/Proyectos.OriginalHouse_Web/trunk@68 54e8636e-a86c-764f-903d-b964358a1ae2
This commit is contained in:
David Arranz 2011-10-04 16:37:18 +00:00
parent a6fb15531e
commit 316b2ebe25
8 changed files with 70 additions and 2 deletions

Binary file not shown.

Binary file not shown.

BIN
información/TAGS.doc Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

View File

@ -30,7 +30,7 @@ Template Name: Blog
<!-- Post Starts -->
<div <?php post_class(); ?>>
<p>sakjassssssssssssssssssssssssssssssssssssssssssssssssssssssss</p>
<div class="post-date">
<span class="month"><?php the_time( 'M' ); ?></span>
<span class="day"><?php the_time( 'd' ); ?></span>

View File

@ -1,6 +1,6 @@
<?php
/*
Template Name: Homepage
Template Name: Homepage (Large Video)
*/
?>
<?php get_header(); ?>

View File

@ -0,0 +1,68 @@
<?php
/*
Template Name: Homepage (Small Video)
*/
?>
<?php get_header(); ?>
<?php global $woo_options; ?>
<div id="content" class="page col-full">
<div id="main" class="fullwidth">
<?php if ( have_posts() ) { $count = 0; ?>
<?php while ( have_posts() ) { the_post(); $count++; ?>
<div <?php post_class(); ?>>
<?php if ( $woo_options[ 'woo_title_show' ] == 'true' ) { ?>
<h1 class="title"><?php the_title(); ?></h1>
<?php } ?>
<div class="entry" style="text-align: left;">
<object class="flashvideo" style="float: left;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="620" height="480" id="player1" align="middle">
<param name="movie" value="wp-content/uploads/2011/06/inicioweb4.swf"/>
<param name="loop" value="false"/>
<param name="menu" value="false"/>
<param name="quality" value="high"/>
<param name="bgcolor" value="#000"/>
<param name="wmode" value="transparent">
<embed src="wp-content/uploads/2011/06/inicioweb4.swf" menu="false" quality="high" bgcolor="#000" width="620" height="480" name="player" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"/>
</object>
<div style="float: right; width: 305px;">
<br/>
<?php if (has_post_thumbnail()) {
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full');
$thumb_size = array(305,305);
$title = the_title('', '', false);
if ( strlen($title) < 2 ) { $title = ''; }
$attrib = array('title' => $title);
?>
<a rel="lightbox" href="<?php echo $large_image_url[0]; ?>" title="<?php echo $description; ?>" class="size-<?php echo $image_size; ?>">
<?php echo the_post_thumbnail($thumb_size, $attrib); ?>
</a>
<?php
}
?>
<?php the_content(); ?>
</div>
<div class="fix"></div>
</div><!-- /.entry -->
</div><!-- /.post -->
<?php
}
} else {
?>
<div <?php post_class(); ?>>
<p><?php _e( 'Sorry, no posts matched your criteria.', 'woothemes' ); ?></p>
</div><!-- /.post -->
<?php } ?>
</div><!-- /#main -->
</div><!-- /#content -->
<?php get_footer(); ?>

Binary file not shown.