39 lines
769 B
PHP
39 lines
769 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Template Name: page plain template
|
||
|
*
|
||
|
* Seccions de pàgines índex amb contingut i fills, però el contingut presentat com un índex
|
||
|
* @link http://themehybrid.com/themes/hybrid/page-templates/categories
|
||
|
*
|
||
|
* @package Hangar
|
||
|
* @subpackage Template
|
||
|
*/
|
||
|
|
||
|
get_header('plain');
|
||
|
|
||
|
?>
|
||
|
|
||
|
<!-- index pàgina pare-->
|
||
|
|
||
|
<div id="main">
|
||
|
<div id="content" class="seccio unic">
|
||
|
<div id="pagina" class="shadow">
|
||
|
|
||
|
<h2><?php echo get_the_title();?></h2>
|
||
|
|
||
|
<?php
|
||
|
while ( have_posts() ) {
|
||
|
|
||
|
the_post();
|
||
|
the_content();
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
</div><!-- .pagina -->
|
||
|
</div><!-- .content -->
|
||
|
</div><!--end Main-->
|
||
|
|
||
|
<!-- <link rel="stylesheet" type="text/css" media="all" href="http://hangar.org/webnou/wp-content/themes/hangar/style.jurado.css" /> -->
|
||
|
|
||
|
<?php get_footer(); ?>
|