PHP Classes

File: asmvc/sysfiles/views/404_error.php

Recommend this page to a friend!
  Classes of Alex B. Snet   ASf MVC   asmvc/sysfiles/views/404_error.php   Download  
File: asmvc/sysfiles/views/404_error.php
Role: Example script
Content type: text/plain
Description: ASfMVC Site 404 error view
Class: ASf MVC
MVC implementation framework
Author: By
Last change:
Date: 16 years ago
Size: 1,680 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/strict.dtd">
<html>
    <head>
        <title><?=$TITLE ?></title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <style type="text/css">
            body {
                                background: #9dbde1 url(http://alexsnet.ru/labs/asfmvc/img/bg-gradient.gif) top repeat-x;
                color: #666666;
                font-family: arial, sans;
                font-size: 100%;
                line-height: 1.7em;
                margin: 0 auto;
                text-align: center;
                width: 500px;
            }

            h1 {
                font-size: 2.18em;
                letter-spacing: -0.01em;
            }
           
            a:link {
                color: #134c8c;
            }

            a:visited {
                color: #666666;
            }

                        .code {
                          text-align: left;
                          margin: 0 0 1.5em 0;
                          font-size: 1.0em;
                          border: 1px solid #134c8c;
                          background-color: #cae3ff;
                          color: #c44242;
                          padding: .2em 1em .4em;
                        }
           
            #bottom {
                border-top: 1px solid #134c8c;
                margin-top: 1em;
                padding-top: 1em;
                font-size: 0.8em;
            }
        </style>
    </head>
    <body>
      <h1><?=$TITLE ?></h1>
       
        <p>Core version <?=ASMVC_VERSION?>.</p>
        <p>Requested page:</p>

        <div class="code"><?=$PAGE ?></div>

       
        <div id="bottom ">
            <a href="http://alexsnet.ru/">Alex Snet</a>.
        </div>
    </body>
</html>