58 lines
2.0 KiB
PHP
58 lines
2.0 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* The Template for displaying all single posts.
|
||
|
*
|
||
|
* @package WordPress
|
||
|
* @subpackage Twenty_Eleven
|
||
|
* @since Twenty Eleven 1.0
|
||
|
*/
|
||
|
|
||
|
get_header('single'); ?>
|
||
|
<div id="single">
|
||
|
<div id="page">
|
||
|
<div class="box space">
|
||
|
<div class="logo">
|
||
|
|
||
|
<div class="menu-languages-rigth">
|
||
|
<a href="<?php bloginfo('url'); ?>"><img src="<?php echo get_template_directory_uri(); ?>/images/logo.png"></a>
|
||
|
</div><!-- menu-languages right -->
|
||
|
|
||
|
<div class="clear"></div>
|
||
|
|
||
|
</div><!-- logo -->
|
||
|
</div><!-- #box -->
|
||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||
|
<div id="content" role="main" class="box space">
|
||
|
|
||
|
<?php get_template_part( 'content', 'page' ); ?>
|
||
|
|
||
|
|
||
|
</div><!-- #content -->
|
||
|
<?php endwhile; // end of the loop. ?>
|
||
|
<div class="box">
|
||
|
<footer id="colophon" role="contentinfo">
|
||
|
<div id="site-info">
|
||
|
<p>
|
||
|
<a href="<?php bloginfo('rss2_url'); ?>"><img src="<?php echo get_template_directory_uri() ?>/images/feed.png"></a> - <a href="<?php echo get_option('home') ?>/wp-admin"> Login</a> - <a href="wp-newpost.php" target="#blank">Upload</a>
|
||
|
</p>
|
||
|
<p><a href="<?php echo get_option('home'); ?>/">SOINUMAPA.NET 2005-11</a> / <a href="http://www.arteleku.net/audiolab" target="_blank">AUDIOLAB</a> / <a href="http://www.arteleku.net" target="_blank">ARTELEKU</a></br>
|
||
|
Made with the SoundMap Plugin</p>
|
||
|
|
||
|
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'soundmap_theme' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'soundmap_theme' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'soundmap_theme' ), 'WordPress' ); ?></a>
|
||
|
|
||
|
</div>
|
||
|
</footer><!-- #colophon -->
|
||
|
</div><!-- #box -->
|
||
|
</div><!-- #page -->
|
||
|
</div><!-- #single -->
|
||
|
|
||
|
</div><!-- #main -->
|
||
|
|
||
|
|
||
|
</div><!-- #page -->
|
||
|
|
||
|
<?php wp_footer(); ?>
|
||
|
<script src="<?php echo get_template_directory_uri(); ?>/js/soundmap_theme_single.js" type="text/javascript"></script>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|