forked from friendica/friendica-wp-theme
5f63119ef0
- popup submenu item full width and left aligned - minimum width for the popup submenu - popup submenu closer to parent item. should fix popup issues. - images in posts have max-width to 100% - show last news in homepage
13 lines
705 B
PHP
13 lines
705 B
PHP
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
<header>
|
|
<?php if ( has_post_thumbnail() ) { ?>
|
|
<span class="image right"><?php the_post_thumbnail('thumbnail'); ?></span>
|
|
<?php } ?>
|
|
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php edit_post_link(); ?>
|
|
<?php if ( !is_search() ) get_template_part( 'entry', 'meta' ); ?>
|
|
</header>
|
|
<?php get_template_part( 'entry', ( is_archive() || is_search() ? 'summary' : 'content' ) ); ?>
|
|
<?php if ( !is_search() ) get_template_part( 'entry-footer' ); ?>
|
|
</article>
|
|
<hr style="clear:both;">
|