19 lines
661 B
PHP
19 lines
661 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="container site-main">
|
|
<div class="content-area">
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class('post single-faq'); ?>>
|
|
<header class="entry-header">
|
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
<a href="<?php echo get_post_type_archive_link('faq'); ?>" class="back-to-faq">← <?php _e( 'Zurück zur Übersicht', 'minecraft-modern-theme' ); ?></a>
|
|
</header>
|
|
<div class="entry-content">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
</article>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|