« Back to History
index.php
|
20260920_164915.php
Initial Domain Snapshot
Copy Code
<?php get_header(); // Start the loop to display posts if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="post"> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <p><?php the_content(); ?></p> <!-- Changed from the_excerpt() to the_content() --> </div> <?php endwhile; else : echo '<p>No posts found.</p>'; endif; get_footer(); ?>