tabbed properly to nest content
This commit is contained in:
parent
fd85b2349a
commit
2252e3d684
57
caixes.php
57
caixes.php
|
@ -27,39 +27,38 @@
|
|||
<h3 class="box <?php echo $tipus;?>"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'hangar' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title() ;?> </a> </h3>
|
||||
<?php endif;?>
|
||||
</div>
|
||||
<?php if ($tipus == 'art') :
|
||||
if(get_post_meta($post->ID, 'autor_tipo_resid', true) && get_post_meta($post->ID, 'autor_data_resid', true)): ?>
|
||||
<p class="meta box">
|
||||
<?php echo __(get_post_meta($post->ID, 'autor_tipo_resid', true)) ?>
|
||||
<br />
|
||||
<?php echo __(get_post_meta($post->ID, 'autor_data_resid', true)) ?>
|
||||
</p>
|
||||
<?php if ($tipus == 'art') :?>
|
||||
<?php if(get_post_meta($post->ID, 'autor_tipo_resid', true) && get_post_meta($post->ID, 'autor_data_resid', true)): ?>
|
||||
<p class="meta box">
|
||||
<?php echo __(get_post_meta($post->ID, 'autor_tipo_resid', true)) ?>
|
||||
<br />
|
||||
<?php echo __(get_post_meta($post->ID, 'autor_data_resid', true)) ?>
|
||||
</p>
|
||||
<?php else : ?>
|
||||
<p class="meta box novista"></p>
|
||||
<?php endif; ?>
|
||||
<?php else : ?>
|
||||
<p class="meta box novista"></p>
|
||||
<p class="meta box"><?php echo get_post_meta($post->ID, 'data_obra', true) ?></p>
|
||||
<?php endif; ?>
|
||||
<?php else : ?>
|
||||
<p class="meta box"><?php echo get_post_meta($post->ID, 'data_obra', true) ?></p>
|
||||
<?php endif; ?>
|
||||
<?php if ( has_post_thumbnail() ) : ?>
|
||||
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
|
||||
<?php //the_post_thumbnail('artists-thumb'); ?>
|
||||
<?php the_post_thumbnail('thumbnail'); ?>
|
||||
|
||||
</a>
|
||||
<?php else : ?>
|
||||
<img class="noimatge gran" width="200" height="230" title="imatge no disponible" alt="imatge no disponible" src="<?php echo get_template_directory_uri() .'/images/noimatgegran.jpg';?>" />
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="boxpeu" >
|
||||
<!-- la fletxeta link al post/pàgina -->
|
||||
<a href="<?php the_permalink(); ?>" class="peubox" title="<?php printf( esc_attr__( 'Permalink to %s', 'hangar' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><img alt="enllaç" src="<?php echo get_template_directory_uri() . '/images/fletxalink.png';?>" /></a>
|
||||
|
||||
<?php if (is_home()) : ?>
|
||||
<!-- els quadrets link a la categoria pare -->
|
||||
<a href="<?php echo get_permalink(2); ?>" class="peudret" title="<?php echo get_the_title(2); ?>" rel="bookmark"><img alt="enllaç a la categoria" src="<?php echo get_template_directory_uri() . '/images/totslink.png';?>" /></a>
|
||||
<?php if ( has_post_thumbnail() ) : ?>
|
||||
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
|
||||
<?php the_post_thumbnail('artists-thumb'); ?>
|
||||
<?php //the_post_thumbnail('thumbnail'); ?>
|
||||
</a>
|
||||
<?php else : ?>
|
||||
<img class="noimatge gran" width="200" height="230" title="imatge no disponible" alt="imatge no disponible" src="<?php echo get_template_directory_uri() .'/images/noimatgegran.jpg';?>" />
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
<div class="boxpeu" >
|
||||
<!-- la fletxeta link al post/pàgina -->
|
||||
<a href="<?php the_permalink(); ?>" class="peubox" title="<?php printf( esc_attr__( 'Permalink to %s', 'hangar' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><img alt="enllaç" src="<?php echo get_template_directory_uri() . '/images/fletxalink.png';?>" /></a>
|
||||
|
||||
<?php if (is_home()) : ?>
|
||||
<!-- els quadrets link a la categoria pare -->
|
||||
<a href="<?php echo get_permalink(2); ?>" class="peudret" title="<?php echo get_the_title(2); ?>" rel="bookmark"><img alt="enllaç a la categoria" src="<?php echo get_template_directory_uri() . '/images/totslink.png';?>" /></a>
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- EQUIP i MATRONAT -->
|
||||
<?php elseif ((!$category) and ($tipus == 'equip')):
|
||||
|
|
Loading…
Reference in New Issue