<!DOCTYPE html> <html> <head> <title>Mein Blog</title> <link rel=“stylesheet type=“text/css href=“style.css„> </head> <body> <div class=“wrapper„> <div class=“navigation„> <ul> <li><a href=“index.html„>Home</a></li> <li><a href=“about.html„>About</a></li> <li><a href=“blog.html„>Blog</a></li> <li><a href=“contact.html„>Contact</a></li> </ul> </div> <div class=“content„> <div class=“main„> <h1>Willkommen auf meinem Blog</h1> <div class=“posts„> <?php $args = array( post_type =>post‚, posts_per_page => 4 ); $the_query = new WP_Query($args); while($the_query->have_posts()) : $the_query->the_post(); ?> <div class=“post„> <a href=“<?php the_permalink() ?>„><?php the_post_thumbnail(‚thumbnail‚) ?></a> <h2><?php the_title() ?></h2> <p><?php the_excerpt() ?></p> <a href=“<?php the_permalink() ?>„>Weiterlesen</a> </div> <?php endwhile ?> </div> </div> </div> <div class=“footer„> <p>&copy; Mein Blog 2020</p> </div> </div> </body> </html>