diff --git a/wordpress.org/public_html/wp-content/themes/pub/wporg-support/archive.php b/wordpress.org/public_html/wp-content/themes/pub/wporg-support/archive.php
index 6df0c78b7..5ef6b0e10 100644
a
|
b
|
get_header(); ?> |
21 | 21 | the_post(); |
22 | 22 | ?> |
23 | 23 | |
24 | | <a href="<?php echo esc_url( get_the_permalink() ); ?>" class="archive-block"> |
25 | | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
26 | | <?php the_title( '<h2>', '</h2>' ); ?> |
27 | | |
28 | | <?php the_excerpt(); ?> |
29 | | </article> |
30 | | </a> |
| 24 | <article id="post-<?php the_ID(); ?>" <?php post_class( 'archive-block' ); ?>> |
| 25 | <h2><a href="<?php echo esc_url( get_the_permalink() ); ?>"><?php the_title(); ?></a></h2> |
| 26 | <?php the_excerpt(); ?> |
| 27 | </article> |
31 | 28 | |
32 | 29 | |
33 | 30 | <?php endwhile; ?> |