You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.2 KiB

  1. <?php if (!defined('__TYPECHO_ROOT_DIR__')) exit;
  2. define("THEME_URL", $this->options->themeUrl);
  3. if(!empty(Helper::options()->CDNURL)){
  4. $theurl = Helper::options()->CDNURL.'/usr/themes/Akina/';
  5. }else{
  6. $theurl = THEME_URL.'/';
  7. }
  8. define("theurl",$theurl);
  9. ?>
  10. <!DOCTYPE HTML>
  11. <html>
  12. <head>
  13. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  14. <meta name="viewport" content="width=device-width, initial-scale=1">
  15. <meta http-equiv="Cache-Control" content="no-transform" />
  16. <meta http-equiv="Cache-Control" content="no-siteapp" />
  17. <title itemprop="name">页面没有找到-<?php $this->options->title(); ?></title>
  18. <link rel="shortcut icon" href="<?php echo theurl; ?>images/favicon.ico">
  19. <link rel="stylesheet" href="<?php echo theurl; ?>css/style.css" type="text/css" />
  20. </head>
  21. <body class="error404 hfeed">
  22. <section class="error-404 not-found">
  23. <div class="error-img">
  24. <img src="<?php echo theurl; ?>images/404bg.jpg">
  25. </div>
  26. <div class="err-button back">
  27. <a href="javascript:history.go(-1)" class="link-button link-back-button">上一页</a>
  28. <a id="gohome" href="<?php $this->options ->siteUrl(); ?>">返回主页</a>
  29. </div>
  30. </section>
  31. </body>