HEX
Server: Apache
System: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User: ws67301310 (67301310)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /homepages/4/d4297730999/htdocs/wordpress/wp-content/themes copy/twentyeleven/category.php
<?php

/**

 * The template for displaying Category Archive pages.

 *

 * @package WordPress

 * @subpackage Twenty_Eleven

 * @since Twenty Eleven 1.0

 */



get_header(); ?>



		<section id="primary" style="width:600px;margin-top:60px">

			<div id="content" role="main" style="width:600px">

			

			<?php if ( have_posts() ) : ?>



				



				



				<?php /* Start the Loop */ ?>

				<?php while ( have_posts() ) : the_post(); ?>



					<?php

						/* Include the Post-Format-specific template for the content.

						 * If you want to overload this in a child theme then include a file

						 * called content-___.php (where ___ is the Post Format name) and that will be used instead.

						 */

						get_template_part( 'content', get_post_format() );

					?>



				<?php endwhile; ?>



			<?php endif; ?>



			</div><!-- #content -->

		</section><!-- #primary -->

<?php get_sidebar(); ?>

<?php get_footer(); ?>