-
Notifications
You must be signed in to change notification settings - Fork 0
/
generic.php
99 lines (83 loc) · 4.2 KB
/
generic.php
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
90
91
92
93
94
95
96
97
98
99
<?php
session_start();
include("webservices/connClass.php");
include ("webservices/dataService.php");
$dataServ = null;
$dataServ = new dataService();
$json_viajar = array();
$data1 = "";
$data2s = "";
$x = 0;
$json_viajar = json_decode($dataServ->getViajarById($_GET['id']));
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>RED AIR</title>
<meta name="description" content="Ofrecemos el mejor servicio a bordo, acompañado de nuestra puntualidad, eficiencia y pronta respuesta de acuerdo a las necesidades y exigencias de los pasajeros.">
<meta name="author" content="RED AIR">
<meta name="keyword" content="RED AIR, Airlines, aerolinea, avion, viajes">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700,800' rel='stylesheet' type='text/css'>
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="assets/img/laser_ico.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="assets/css/normalize.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/fontello.css">
<link href="assets/fonts/icon-7-stroke/css/pe-icon-7-stroke.css" rel="stylesheet">
<link href="assets/fonts/icon-7-stroke/css/helper.css" rel="stylesheet">
<link href="assets/css/animate.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="assets/css/bootstrap-select.min.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/icheck.min_all.css">
<link rel="stylesheet" href="assets/css/price-range.css">
<link rel="stylesheet" href="assets/css/owl.carousel.css">
<link rel="stylesheet" href="assets/css/owl.theme.css">
<link rel="stylesheet" href="assets/css/owl.transitions.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body>
<div id="preloader">
<div id="status"> </div>
</div>
<!-- Body content -->
<?php include("includes/header.php"); ?>
<div class="page-head">
<div class="container">
<div class="row">
<div class="page-head-content">
<!-- <h1 class="page-title">Quienes somos</h1> -->
</div>
</div>
</div>
</div>
<!-- End page header -->
<div class="content-area blog-page padding-top-40" style="background-color: #FCFCFC; padding-bottom: 55px;">
<div class="container">
<div class="row">
<div class="blog-lst col-md-12 pl0">
<section id="id-100" class="post single">
<div class="post-header single">
<div style="color: #D02937">
<h3 class="wow fadeInLeft animated"><?php echo $json_viajar->articuloList[0]->nombre ?></h3>
<div class="title-line wow fadeInRight animated"></div>
</div>
</div>
<div id="post-content" class="post-body single wow fadeInLeft animated">
<?php echo $json_viajar->articuloList[0]->contenido ?>
</div>
</section>
</div>
</div>
</div>
</div>
<?php include ("includes/footer.php"); ?>
</body>
</html>