-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path503.php
More file actions
89 lines (88 loc) · 3.51 KB
/
503.php
File metadata and controls
89 lines (88 loc) · 3.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php require_once 'config.php'; ?>
<?php http_response_code(503); ?>
<!DOCTYPE html>
<!--[if IE 8 ]><html class="no-js oldie ie8" lang="en"><![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"><![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html class="no-js" lang="es"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>bitbank - 503</title>
<meta name="description" content="desarrollo">
<meta name="author" content="bitbank">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="<?php echo(CSS_DIR . '/base.css'); ?>">
<link rel="stylesheet" href="<?php echo(CSS_DIR . '/vendor.min.css'); ?>">
<link rel="stylesheet" href="<?php echo(CSS_DIR . '/main.css'); ?>">
<style type="text/css">
@media only screen and (max-width: 768px) {
.js #nav-wrap a#toggle-btn {
visibility: hidden;
}
}
</style>
<link rel="shortcut icon" href="<?php echo(MAIN_DIR . '/favicon.png'); ?>">
<script src="<?php echo(JS_DIR . '/modernizr.js'); ?>"></script>
</head>
<body>
<header id="main-header">
<div class="row">
<div class="logo">
<a href="<?php echo(BITBANK_HOME); ?>">bitbank</a>
</div>
<nav id="nav-wrap">
<a class="mobile-btn" href="#nav-wrap" title="Show navigation">
<span class="menu-icon">Menu</span>
</a>
<a class="mobile-btn" href="#" title="Hide navigation">
<span class="menu-icon">Menu</span>
</a>
</nav>
</div>
</header>
<section id="main">
<div class="row main-content">
<div class="twelve columns main-container">
<!-- start main-slider -->
<div id="main-slider" class="flexslider">
<ul class="slides">
<!-- slide -->
<li>
<div class="flex-caption">
<h2>Uhhh...</h2>
<h1>Servicio no disponible</h1>
<h3>Reintentar después</h3>
</div>
</li>
</ul><!-- end slide -->
</div><!-- end main-slider -->
</div><!-- end twelve columns -->
</div><!-- end row -->
</section><!-- end homepage main -->
<footer>
<div class="row">
<div class="twelve columns content group">
<div class="info">
<div class="footer-logo"></div>
</div>
</div>
<ul class="copyright">
<li>© Copyright <?php echo(YEAR); ?> - bitbank. Derechos pendientes.</li>
<br>
<li>Diseño por <a href="https://www.styleshout.com/">Styleshout.</a>.</li>
</ul>
</div><!-- end row -->
</footer><!-- end footer -->
<div id="preloader">
<div id="loader"></div>
</div>
<script src="<?php echo(JS_DIR . '/jquery-1.11.3.min.js'); ?>"></script>
<script src="<?php echo(JS_DIR . '/jquery-migrate-1.2.1.min.js'); ?>"></script>
<script src="<?php echo(JS_DIR . '/jquery.flexslider-min.js'); ?>"></script>
<script src="<?php echo(JS_DIR . '/jquery.waypoints.min.js'); ?>"></script>
<script src="<?php echo(JS_DIR . '/jquery.validate.min.js'); ?>"></script>
<script src="<?php echo(JS_DIR . '/jquery.fittext.js'); ?>"></script>
<script src="<?php echo(JS_DIR . '/jquery.placeholder.min.js'); ?>"></script>
<script src="<?php echo(JS_DIR . '/jquery.magnific-popup.min.js'); ?>"></script>
<script src="<?php echo(JS_DIR . '/main.js'); ?>"></script>
</body>
</html>