1234567891011121314151617181920 |
- <?php
- header('HTTP/1.1 404 Not Found', true, 404);
- ?>
- <div class="container">
- <div class="row">
- <div class="col-md-12">
- <div class="error-template text-center">
- <h1>Oops!</h1>
- <h2>404 Not Found</h2>
- <div class="error-details">
- Sorry, an error has occured, Requested page not found!
- </div>
- <div class="error-actions">
- <a href="<?php echo get_page_url("home", $CONF); ?>" class="btn btn-primary btn-lg"><span class="glyphicon glyphicon-home"></span>
- Take Me Home </a><a href="<?php echo get_page_url("contact", $CONF); ?>" class="btn btn-default btn-lg"><span class="glyphicon glyphicon-envelope"></span> Contact Support </a>
- </div>
- </div>
- </div>
- </div>
- </div>
|