2010-10-09 11:19:37 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 19:04:10 +02:00
|
|
|
* Template for displaying attachments
|
2010-10-09 11:19:37 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Ten
|
|
|
|
* @since Twenty Ten 1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
<div id="container" class="single-attachment">
|
|
|
|
<div id="content" role="main">
|
|
|
|
|
|
|
|
<?php
|
2013-10-09 22:39:09 +02:00
|
|
|
/*
|
2013-09-25 19:04:10 +02:00
|
|
|
* Run the loop to output the attachment.
|
2010-10-09 11:19:37 +02:00
|
|
|
* If you want to overload this in a child theme then include a file
|
|
|
|
* called loop-attachment.php and that will be used instead.
|
|
|
|
*/
|
|
|
|
get_template_part( 'loop', 'attachment' );
|
|
|
|
?>
|
|
|
|
|
|
|
|
</div><!-- #content -->
|
|
|
|
</div><!-- #container -->
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|