HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/mystique/content-quote.php
<?php
/**
 * The portion of the loop that shows the "quote" post format.
 *
 * @package WordPress
 * @subpackage Mystique
 */
?>
<div <?php post_class( 'post-wrapper clear-block' ); ?>>

	<?php if ( ! is_single() && get_the_title() != '' ) : ?>
		<h2 class="post-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php echo esc_attr( sprintf( __( 'Permanent Link to %s', 'mystique' ), the_title_attribute( 'echo=0' ) ) ); ?>"><?php the_title(); ?></a></h2>
	<?php else: ?>
		<h1 class="single-title"><?php the_title(); ?></h1>
	<?php endif; ?>

	<div class="entry">
		<?php the_content(); ?>
	</div><!-- .entry -->

	<?php if ( ! is_single() ) : ?>
	<div class="post-meta">
		<p class="alignright">
			<?php
			printf( __( '<a href="%s" rel="bookmark">&#35;</a>', 'mystique' ),
				get_permalink()
			);
			?>
			<?php edit_post_link( __( 'Edit', 'mystique' ), '<span class="edit-link"> &#124; ', '</span>' ); ?>
		</p>
	</div><!-- .meta -->
	<?php endif; ?>
</div><!-- .post-wrapper -->