-
Notifications
You must be signed in to change notification settings - Fork 0
/
hotel.aspx
73 lines (61 loc) · 2.91 KB
/
hotel.aspx
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
<%@ Page Title="" Language="C#" MasterPageFile="~/PlacesToGo.master" AutoEventWireup="true" CodeFile="hotel.aspx.cs" Inherits="hotel" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
<style>
.header-1-d-none {
display: none !important;
}
.btn.search-btn2 {
padding: 5px;
font-size: 1rem;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<!-- ============================ Place Details Intro Start================================== -->
<section class="gray pb-1">
<div class="container">
<div class="row">
<div class="col-lg-5 col-md-8">
<asp:ListView ID="lv_hotelIntro" runat="server">
<ItemTemplate>
<div class="tr-list-detail dark">
<div class="tr-list-thumb" style="display:flex;align-items:center;">
<img src="assets/Images/HotelImages/<%# Eval("hotel_image") %>" class="img-responsive" alt="" />
</div>
<div class="tr-list-info">
<h4 class="veryfied-list"><%# Eval("hotel_name") %></h4>
<p><i class="ti-location-pin"></i><%# Eval("hotel_address") %></p>
</div>
</div>
</ItemTemplate>
</asp:ListView>
</div>
</div>
</div>
</section>
<!-- ============================ Place Details Intro End ================================== -->
<!-- ============================ Place Details Description Start ================================== -->
<section class="gray">
<div class="container">
<div class="row">
<!-- property main detail -->
<div class="col-lg-12 col-md-12 col-sm-12">
<!-- Description -->
<asp:ListView ID="lv_hotelDetails" runat="server">
<ItemTemplate>
<div class="Reveal-block-wrap">
<div class="Reveal-block-header">
<h4 class="block-title">Description</h4>
</div>
<div class="Reveal-block-body">
<p><%#Eval("hotel_details") %></p>
</div>
</div>
</ItemTemplate>
</asp:ListView>
</div>
</div>
</div>
</section>
<!-- ============================ Property Detail End ================================== -->
</asp:Content>