git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@3 c22fe52d-42d7-ba4f-95f7-33effcf65713
46 lines
1.7 KiB
PHP
46 lines
1.7 KiB
PHP
<?php extract(wpv_post_info()) ?>
|
|
<div class="side-post-info">
|
|
<a class="post-format-pad" href="<?php echo add_query_arg( 'format_filter','video',home_url()) ?>"><span class="video"></span></a>
|
|
<?php if(wpv_get_option('meta_posted_on')): ?>
|
|
<span class="entry-date" title="<?php the_time(); ?>"><?php the_time('j F'); ?></span>
|
|
<?php endif ?>
|
|
<?php edit_post_link('Edit') ?>
|
|
</div>
|
|
|
|
<div class="post-article">
|
|
<?php po_post_header($meta) ?>
|
|
|
|
<article class="video-post-format">
|
|
<?php $width = ($width == 'full') ? wpv_str_to_width($width)-106-10 : wpv_str_to_width($width);?>
|
|
<div class="post-video"><?php wpv_post_video($width) ?></div>
|
|
|
|
<div class="post-content">
|
|
<?php
|
|
if(is_single()) {
|
|
the_content();
|
|
wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wpv' ), 'after' => '</div>' ) );
|
|
wpv_share('post');
|
|
} else {
|
|
if($fullpost) {
|
|
global $more;
|
|
$more = 0;
|
|
the_content(__("Read More", 'wpv'),false);
|
|
} else {
|
|
the_excerpt();
|
|
}
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<footer class="entry-utility">
|
|
<?php if($meta && wpv_get_option('meta_posted_in')): ?>
|
|
<span><?php _e('Categories:', 'wpv')?></span> <span><?php echo get_the_category_list(', '); ?></span>
|
|
<?php the_tags('<span>Tags: </span><span>',', ','</span>')?>
|
|
<?php endif ?>
|
|
<?php if(wpv_get_option('meta_comment_count')): ?>
|
|
<span class="comments-link fr"><?php comments_popup_link('<b>Leave a comment</b> <span class="icomment-box">?</span>', '<b>Comment</b> <span class="icomment-box">1</span>', '<b>Comments</b> <span class="icomment-box">%</span>'); ?></span>
|
|
<?php endif ?>
|
|
</footer>
|
|
</article>
|
|
</div>
|