diff --git a/wordpress.org/public_html/wp-content/themes/pub/gutenberg/404.php b/wordpress.org/public_html/wp-content/themes/pub/gutenberg/404.php
index 4a69246..1e63aa5 100644
a
|
b
|
get_header(); ?> |
22 | 22 | |
23 | 23 | <?php |
24 | 24 | get_search_form(); |
25 | | |
26 | | the_widget( 'WP_Widget_Recent_Posts' ); |
27 | | ?> |
28 | | |
29 | | <div class="widget widget_categories"> |
30 | | <h2 class="widget-title"><?php esc_html_e( 'Most Used Categories', 'gutenbergtheme' ); ?></h2> |
31 | | <ul> |
32 | | <?php |
33 | | wp_list_categories( array( |
34 | | 'orderby' => 'count', |
35 | | 'order' => 'DESC', |
36 | | 'show_count' => 1, |
37 | | 'title_li' => '', |
38 | | 'number' => 10, |
39 | | ) ); |
40 | | ?> |
41 | | </ul> |
42 | | </div><!-- .widget --> |
43 | | |
44 | | <?php |
45 | | |
46 | | /* translators: %1$s: smiley */ |
47 | | $archive_content = '<p>' . sprintf( esc_html__( 'Try looking in the monthly archives. %1$s', 'gutenbergtheme' ), convert_smilies( ':)' ) ) . '</p>'; |
48 | | the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$archive_content" ); |
49 | | |
50 | | the_widget( 'WP_Widget_Tag_Cloud' ); |
51 | 25 | ?> |
52 | | |
53 | 26 | </div><!-- .page-content --> |
54 | 27 | </section><!-- .error-404 --> |
55 | 28 | |
diff --git a/wordpress.org/public_html/wp-content/themes/pub/gutenberg/style.css b/wordpress.org/public_html/wp-content/themes/pub/gutenberg/style.css
index 719a30e..6714aab 100644
a
|
b
|
a.github-edit:hover > * { |
1622 | 1622 | a.github-edit img { |
1623 | 1623 | height: .8em; |
1624 | 1624 | } |
| 1625 | .error404 #content { |
| 1626 | max-width: 960px; |
| 1627 | margin: 0 auto; |
| 1628 | display: flex; |
| 1629 | min-height: 400px; |
| 1630 | } |
| 1631 | .error404 p { |
| 1632 | margin: 1.5em auto; |
| 1633 | } |