404.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * The template for displaying 404 pages (not found).
  4. *
  5. * @link https://codex.wordpress.org/Creating_an_Error_404_Page
  6. *
  7. * @package Akina
  8. */
  9. ?>
  10. <html <?php language_attributes();
  11. add_action('wp_head',function(){
  12. wp_dequeue_style('wp-block-library');
  13. wp_dequeue_style('wp-block-library-theme');
  14. wp_dequeue_style('entry-content');
  15. },5);
  16. ?>>
  17. <head>
  18. <meta charset="<?php bloginfo('charset'); ?>">
  19. <meta name="viewport" content="width=device-width, initial-scale=1">
  20. <link rel="shortcut icon" href="<?php echo iro_opt('favicon_link', ''); ?>" />
  21. <?php wp_head(); ?>
  22. <?php
  23. /* <script>
  24. var the_url=window.location.href;
  25. var the_dom="<?php echo str_replace("http://", "", str_replace("https://", "", get_site_url())); ?>";
  26. var no_report = false;
  27. if (the_dom!= '2heng.xin') {
  28. no_report = true;
  29. }
  30. var the_ua=navigator.userAgent;
  31. var the_ref=document.referrer;
  32. function httpGet(theUrl) {
  33. var xmlHttp = new XMLHttpRequest();
  34. xmlHttp.open( "GET", theUrl, false ); // false for synchronous request
  35. xmlHttp.send( null );
  36. return xmlHttp.responseText;
  37. }
  38. var report_url = "https://api.mashiro.top/count/404/?" + "url="+the_url+"&ua="+the_ua+"&ref="+the_ref;
  39. if (!no_report) httpGet(report_url);
  40. </script> */
  41. ?>
  42. </head>
  43. <body <?php body_class(); ?>>
  44. <section class="error-404 not-found">
  45. <div class="error-img">
  46. <div class="anim-icon" id="404" style="height: 66%;"></div>
  47. </div>
  48. <div class="err-button back">
  49. <a id="golast" href=javascript:history.go(-1);><?php _e('return to previous page', 'sakurairo');/*返回上一页*/ ?></a>
  50. <a id="gohome" href="<?php bloginfo('url'); ?>"><?php _e('return to home page', 'sakurairo');/*返回主页*/ ?></a>
  51. </div>
  52. <div style="display:block; width:284px;margin: auto;">
  53. <p style="margin-bottom: 1em;margin-top: 1.5em;text-align: center;font-size: 15px;"><?php _e('Don\'t worry, search in site?', 'sakurairo');/*别急,试试站内搜索?*/ ?></p>
  54. <form class="s-search" method="get" action="/" role="search">
  55. <input class="text-input" style="padding: 8px 20px;" type="search" name="s" placeholder="<?php _e('Search...', 'sakurairo') ?>" required>
  56. </form>
  57. </div>
  58. </section>
  59. <script src="<?php global $shared_lib_basepath;echo $shared_lib_basepath?>/js/anf.js" type="text/javascript"></script>
  60. </body>