Compare commits
64 Commits
feature/po
...
feature/ph
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
325e2b4707 | ||
|
|
233305cac2 | ||
|
|
5736757f19 | ||
|
|
ad460ef85a | ||
|
|
e6d298c506 | ||
|
|
98ef03c7af | ||
|
|
05f74f1b86 | ||
|
|
9133b7bbc6 | ||
|
|
b52c46b67c | ||
|
|
32651ed433 | ||
|
|
f522b84fc1 | ||
|
|
2b136c4b06 | ||
|
|
7f0964009a | ||
|
|
5be946f78f | ||
|
|
cb588d20ee | ||
|
|
fdeaf85bf0 | ||
|
|
d81d74a7c7 | ||
|
|
bfb3a0f8a9 | ||
|
|
5a2c48f343 | ||
|
|
1767337d99 | ||
|
|
674af23994 | ||
|
|
ec563e0376 | ||
|
|
a3403bf503 | ||
|
|
5f1a6bc441 | ||
|
|
716de2f0e9 | ||
|
|
79e292dc7c | ||
|
|
59c1e37d5c | ||
|
|
0c068eeb69 | ||
|
|
6fd3b8d082 | ||
|
|
902291d8d1 | ||
|
|
ac460ef97f | ||
|
|
be2b757f4e | ||
|
|
86faad7a78 | ||
|
|
1d7a50709e | ||
|
|
7e544311e3 | ||
|
|
0143f5dd12 | ||
|
|
45523720ea | ||
|
|
4c839d02c0 | ||
|
|
cbb52cda35 | ||
|
|
2544676685 | ||
|
|
84dc35c8d5 | ||
|
|
2f94c17c28 | ||
|
|
110c853945 | ||
|
|
0d01c7da90 | ||
|
|
938ce4e15e | ||
|
|
6359b94d21 | ||
|
|
def849ac11 | ||
|
|
88832d1af2 | ||
|
|
e4bae64b4c | ||
|
|
076053658b | ||
|
|
b120415d53 | ||
|
|
7b1c20410c | ||
|
|
3247d15ce7 | ||
|
|
ce6c8e257a | ||
|
|
1ef4d06627 | ||
|
|
062dc46ffd | ||
|
|
b69f8f5f1b | ||
|
|
53c29b62ca | ||
|
|
c8c8dfb9c7 | ||
| 561592bc0d | |||
|
|
4bdfbff0b6 | ||
|
|
85ce1b29e7 | ||
| 5e88b10221 | |||
|
|
07d75bc004 |
1
.gitignore
vendored
@@ -1,5 +1,6 @@
|
|||||||
.env
|
.env
|
||||||
/vendor/
|
/vendor/
|
||||||
.htaccess
|
.htaccess
|
||||||
|
/uploads/
|
||||||
|
|
||||||
/uploads/pop/
|
/uploads/pop/
|
||||||
139
.htaccess
@@ -1,5 +1,142 @@
|
|||||||
|
# URL Rewrite Rules - Maps old URLs to new directory structure during migration
|
||||||
|
<IfModule mod_rewrite.c>
|
||||||
|
RewriteEngine On
|
||||||
|
RewriteBase /
|
||||||
|
|
||||||
|
# Don't rewrite existing files or directories
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
|
|
||||||
|
# === STRIP .PHP EXTENSION ===
|
||||||
|
# Redirect /page.php to /page (301 permanent redirect)
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
|
RewriteRule ^(.+)\.php$ /$1 [R=301,L]
|
||||||
|
# Internally rewrite /page to /page.php if page.php exists
|
||||||
|
RewriteCond %{REQUEST_FILENAME}\.php -f
|
||||||
|
RewriteRule ^(.+)$ $1.php [L]
|
||||||
|
|
||||||
|
# === AUTH PAGES ===
|
||||||
|
RewriteRule ^login$ src/pages/auth/login.php [L]
|
||||||
|
RewriteRule ^register$ src/pages/auth/register.php [L]
|
||||||
|
RewriteRule ^forgot_password$ src/pages/auth/forgot_password.php [L]
|
||||||
|
RewriteRule ^reset_password$ src/pages/auth/reset_password.php [L]
|
||||||
|
RewriteRule ^verify$ src/pages/auth/verify.php [L]
|
||||||
|
RewriteRule ^resend_verification$ src/pages/auth/resend_verification.php [L]
|
||||||
|
RewriteRule ^change_password$ src/pages/auth/change_password.php [L]
|
||||||
|
RewriteRule ^update_password$ src/pages/auth/update_password.php [L]
|
||||||
|
|
||||||
|
# === MEMBERSHIP PAGES ===
|
||||||
|
RewriteRule ^membership$ src/pages/memberships/membership.php [L]
|
||||||
|
RewriteRule ^membership_details$ src/pages/memberships/membership_details.php [L]
|
||||||
|
RewriteRule ^membership_application$ src/pages/memberships/membership_application.php [L]
|
||||||
|
RewriteRule ^membership_payment$ src/pages/memberships/membership_payment.php [L]
|
||||||
|
RewriteRule ^renew_membership$ src/pages/memberships/renew_membership.php [L]
|
||||||
|
RewriteRule ^member_info$ src/pages/memberships/member_info.php [L]
|
||||||
|
|
||||||
|
# === BOOKING PAGES ===
|
||||||
|
RewriteRule ^bookings$ src/pages/bookings/bookings.php [L]
|
||||||
|
RewriteRule ^campsites$ src/pages/bookings/campsites.php [L]
|
||||||
|
RewriteRule ^campsite_booking$ src/pages/bookings/campsite_booking.php [L]
|
||||||
|
RewriteRule ^add_campsite$ src/pages/add_campsite.php [L]
|
||||||
|
RewriteRule ^trips$ src/pages/bookings/trips.php [L]
|
||||||
|
RewriteRule ^trip-details$ src/pages/bookings/trip-details.php [L]
|
||||||
|
RewriteRule ^course_details$ src/pages/bookings/course_details.php [L]
|
||||||
|
RewriteRule ^driver_training$ src/pages/bookings/driver_training.php [L]
|
||||||
|
|
||||||
|
# === SHOP PAGES ===
|
||||||
|
RewriteRule ^view_cart$ src/pages/shop/view_cart.php [L]
|
||||||
|
RewriteRule ^add_to_cart$ src/pages/shop/add_to_cart.php [L]
|
||||||
|
RewriteRule ^bar_tabs$ src/pages/shop/bar_tabs.php [L]
|
||||||
|
RewriteRule ^payment_confirmation$ src/pages/shop/payment_confirmation.php [L]
|
||||||
|
RewriteRule ^confirm$ src/pages/shop/confirm.php [L]
|
||||||
|
RewriteRule ^confirm2$ src/pages/shop/confirm2.php [L]
|
||||||
|
|
||||||
|
# === GALLERY PAGES ===
|
||||||
|
RewriteRule ^gallery$ src/pages/gallery/gallery.php [L]
|
||||||
|
RewriteRule ^create_album$ src/pages/gallery/create_album.php [L]
|
||||||
|
RewriteRule ^edit_album$ src/pages/gallery/create_album.php [L]
|
||||||
|
RewriteRule ^view_album$ src/pages/gallery/view_album.php [L]
|
||||||
|
|
||||||
|
# === EVENTS & BLOG PAGES ===
|
||||||
|
RewriteRule ^events$ src/pages/events/events.php [L]
|
||||||
|
RewriteRule ^blog$ src/pages/events/blog.php [L]
|
||||||
|
RewriteRule ^blog_details$ src/pages/events/blog_details.php [L]
|
||||||
|
RewriteRule ^best_of_the_eastern_cape_2024$ src/pages/events/best_of_the_eastern_cape_2024.php [L]
|
||||||
|
RewriteRule ^2025_agm_minutes$ src/pages/events/2025_agm_minutes.php [L]
|
||||||
|
RewriteRule ^agm_content$ src/pages/events/agm_content.php [L]
|
||||||
|
RewriteRule ^instapage$ src/pages/events/instapage.php [L]
|
||||||
|
|
||||||
|
# === OTHER PAGES ===
|
||||||
|
RewriteRule ^about$ src/pages/other/about.php [L]
|
||||||
|
RewriteRule ^contact$ src/pages/other/contact.php [L]
|
||||||
|
RewriteRule ^privacy_policy$ src/pages/other/privacy_policy.php [L]
|
||||||
|
RewriteRule ^404$ src/pages/other/404.php [L]
|
||||||
|
RewriteRule ^account_settings$ src/pages/other/account_settings.php [L]
|
||||||
|
RewriteRule ^rescue_recovery$ src/pages/other/rescue_recovery.php [L]
|
||||||
|
RewriteRule ^bush_mechanics$ src/pages/other/bush_mechanics.php [L]
|
||||||
|
RewriteRule ^indemnity$ src/pages/other/indemnity.php [L]
|
||||||
|
RewriteRule ^indemnity_waiver$ src/pages/other/indemnity_waiver.php [L]
|
||||||
|
RewriteRule ^basic_indemnity$ src/pages/other/basic_indemnity.php [L]
|
||||||
|
RewriteRule ^view_indemnity$ src/pages/other/view_indemnity.php [L]
|
||||||
|
|
||||||
|
# === ADMIN PAGES ===
|
||||||
|
RewriteRule ^admin_members$ src/admin/admin_members.php [L]
|
||||||
|
RewriteRule ^admin_payments$ src/admin/admin_payments.php [L]
|
||||||
|
RewriteRule ^admin_web_users$ src/admin/admin_web_users.php [L]
|
||||||
|
RewriteRule ^admin_events$ src/admin/admin_events.php [L]
|
||||||
|
RewriteRule ^admin_course_bookings$ src/admin/admin_course_bookings.php [L]
|
||||||
|
RewriteRule ^admin_camp_bookings$ src/admin/admin_camp_bookings.php [L]
|
||||||
|
RewriteRule ^admin_trip_bookings$ src/admin/admin_trip_bookings.php [L]
|
||||||
|
RewriteRule ^admin_visitors$ src/admin/admin_visitors.php [L]
|
||||||
|
RewriteRule ^admin_efts$ src/admin/admin_efts.php [L]
|
||||||
|
RewriteRule ^admin_trips$ src/admin/admin_trips.php [L]
|
||||||
|
RewriteRule ^manage_events$ src/admin/manage_events.php [L]
|
||||||
|
RewriteRule ^manage_trips$ src/admin/manage_trips.php [L]
|
||||||
|
|
||||||
|
# === API/AJAX ENDPOINTS ===
|
||||||
|
RewriteRule ^fetch_users$ src/api/fetch_users.php [L]
|
||||||
|
RewriteRule ^fetch_drinks$ src/api/fetch_drinks.php [L]
|
||||||
|
RewriteRule ^fetch_bar_tabs$ src/api/fetch_bar_tabs.php [L]
|
||||||
|
RewriteRule ^get_campsites$ src/api/get_campsites.php [L]
|
||||||
|
RewriteRule ^get_tab_total$ src/api/get_tab_total.php [L]
|
||||||
|
RewriteRule ^google_validate_login$ src/api/google_validate_login.php [L]
|
||||||
|
|
||||||
|
# === PROCESSORS ===
|
||||||
|
RewriteRule ^validate_login$ src/processors/validate_login.php [L]
|
||||||
|
RewriteRule ^register_user$ src/processors/register_user.php [L]
|
||||||
|
RewriteRule ^process_application$ src/processors/process_application.php [L]
|
||||||
|
RewriteRule ^process_booking$ src/processors/process_booking.php [L]
|
||||||
|
RewriteRule ^process_camp_booking$ src/processors/process_camp_booking.php [L]
|
||||||
|
RewriteRule ^process_course_booking$ src/processors/process_course_booking.php [L]
|
||||||
|
RewriteRule ^process_trip_booking$ src/processors/process_trip_booking.php [L]
|
||||||
|
RewriteRule ^process_membership_payment$ src/processors/process_membership_payment.php [L]
|
||||||
|
RewriteRule ^process_payments$ src/processors/process_payments.php [L]
|
||||||
|
RewriteRule ^process_eft$ src/processors/process_eft.php [L]
|
||||||
|
RewriteRule ^submit_order$ src/processors/submit_order.php [L]
|
||||||
|
RewriteRule ^submit_pop$ src/processors/submit_pop.php [L]
|
||||||
|
RewriteRule ^process_signature$ src/processors/process_signature.php [L]
|
||||||
|
RewriteRule ^create_bar_tab$ src/processors/create_bar_tab.php [L]
|
||||||
|
RewriteRule ^update_application$ src/processors/update_application.php [L]
|
||||||
|
RewriteRule ^update_user$ src/processors/update_user.php [L]
|
||||||
|
RewriteRule ^upload_profile_picture$ src/processors/upload_profile_picture.php [L]
|
||||||
|
RewriteRule ^send_reset_link$ src/processors/send_reset_link.php [L]
|
||||||
|
RewriteRule ^logout$ src/processors/logout.php [L]
|
||||||
|
RewriteRule ^process_trip$ src/processors/process_trip.php [L]
|
||||||
|
RewriteRule ^process_event$ src/admin/process_event.php [L]
|
||||||
|
RewriteRule ^toggle_trip_published$ src/processors/toggle_trip_published.php [L]
|
||||||
|
RewriteRule ^toggle_event_published$ src/admin/toggle_event_published.php [L]
|
||||||
|
RewriteRule ^delete_trip$ src/processors/delete_trip.php [L]
|
||||||
|
RewriteRule ^delete_event$ src/admin/delete_event.php [L]
|
||||||
|
RewriteRule ^save_album$ src/processors/save_album.php [L]
|
||||||
|
RewriteRule ^update_album$ src/processors/update_album.php [L]
|
||||||
|
RewriteRule ^delete_album$ src/processors/delete_album.php [L]
|
||||||
|
RewriteRule ^delete_photo$ src/processors/delete_photo.php [L]
|
||||||
|
RewriteRule ^get_album_photos$ src/processors/get_album_photos.php [L]
|
||||||
|
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
php_flag display_errors On
|
php_flag display_errors On
|
||||||
php_value error_reporting -1
|
# php_value error_reporting -1
|
||||||
RedirectMatch 403 ^/\.well-known
|
RedirectMatch 403 ^/\.well-known
|
||||||
Options -Indexes
|
Options -Indexes
|
||||||
|
|
||||||
|
|||||||
293
about.php
@@ -1,292 +1,3 @@
|
|||||||
<?php include_once('header02.php');
|
|
||||||
?>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.gallery-slider-active {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
gap: 16px;
|
|
||||||
/* spacing between images */
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gallery-three-item {
|
|
||||||
width: 520px;
|
|
||||||
height: 300px;
|
|
||||||
overflow: hidden;
|
|
||||||
border-radius: 8px;
|
|
||||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
||||||
background: #f9f9f9;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gallery-three-item .image {
|
|
||||||
flex-grow: 1;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gallery-three-item img {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
object-fit: cover;
|
|
||||||
/* ensures aspect ratio while filling container */
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
<!-- Page Banner Start -->
|
|
||||||
<?php
|
<?php
|
||||||
$bannerFolder = 'assets/images/banners/';
|
// Redirector file - loads the actual page from src/pages/other/
|
||||||
$bannerImages = glob($bannerFolder . '*.{jpg,jpeg,png,webp}', GLOB_BRACE);
|
require_once __DIR__ . '/src/pages/other/about.php';
|
||||||
|
|
||||||
$randomBanner = 'assets/images/base4/camping.jpg'; // default fallback
|
|
||||||
if (!empty($bannerImages)) {
|
|
||||||
$randomBanner = $bannerImages[array_rand($bannerImages)];
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<section class="page-banner-area pt-50 pb-35 rel z-1 bgs-cover" style="background-image: url('<?php echo $randomBanner; ?>');">
|
|
||||||
<!-- Overlay PNG -->
|
|
||||||
<div class="banner-overlay"></div>
|
|
||||||
<div class="container">
|
|
||||||
<div class="banner-inner text-white mb-50">
|
|
||||||
<h2 class="page-title mb-10" data-aos="fade-left" data-aos-duration="1500" data-aos-offset="50">About</h2>
|
|
||||||
<nav aria-label="breadcrumb">
|
|
||||||
<ol class="breadcrumb justify-content-center mb-20" data-aos="fade-right" data-aos-delay="200" data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
|
|
||||||
<li class="breadcrumb-item active">About</li>
|
|
||||||
</ol>
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<!-- Benefit Area start -->
|
|
||||||
<section class="benefit-area mt-100 rel z-1">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row align-items-center justify-content-between">
|
|
||||||
<div class="col-xl-5 col-lg-6">
|
|
||||||
<div class="mobile-app-content rmb-55" data-aos="fade-up" data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<div class="section-title counter-text-wrap mb-40">
|
|
||||||
<h2>Welcome to the Four Wheel Drive Club of Southern Africa!</h2>
|
|
||||||
</div>
|
|
||||||
<p style="max-width: 600px; margin: 0 auto;">
|
|
||||||
We're a family-friendly outdoor adventure club passionate about exploring the great outdoors through off-road driving, camping, overlanding, cross-border trips, day trips, and unforgettable events. Whether you're new to 4x4 adventures or a seasoned explorer, our community is all about camaraderie, responsible adventure, and creating lasting memories—on and off the road.
|
|
||||||
</p>
|
|
||||||
<ul class="list-style-two mt-35 mb-30">
|
|
||||||
<li>Overlanding</li>
|
|
||||||
<li>Camping</li>
|
|
||||||
<li>Day Trips</li>
|
|
||||||
<li>4x4 Driver Training</li>
|
|
||||||
<li>Family Events</li>
|
|
||||||
<li>Monthly Open Days</li>
|
|
||||||
<li>Guest Speakers</li>
|
|
||||||
<li>4x4 Driving Track</li>
|
|
||||||
</ul>
|
|
||||||
<!-- <a href="about.html" class="theme-btn style-two">
|
|
||||||
<span data-hover="Explore Guides">Explore Guides</span>
|
|
||||||
<i class="fal fa-arrow-right"></i>
|
|
||||||
</a> -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="col-lg-6">
|
|
||||||
<div class="benefit-image-part style-two">
|
|
||||||
<div class="image-one" data-aos="fade-down" data-aos-delay="50" data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<img src="assets/images/benefit/benefit1.png" alt="Benefit">
|
|
||||||
</div>
|
|
||||||
<div class="image-two" data-aos="fade-up" data-aos-delay="50" data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<img src="assets/images/benefit/benefit2.png" alt="Benefit">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<!-- Benefit Area end -->
|
|
||||||
|
|
||||||
<!-- Hotel Area start -->
|
|
||||||
<section class="hotel-area bgc-black py-100 rel z-1">
|
|
||||||
<div class="container-fluid">
|
|
||||||
<div class="row justify-content-center">
|
|
||||||
<div class="col-lg-12">
|
|
||||||
<div class="section-title text-white text-center counter-text-wrap mb-70" data-aos="fade-up"
|
|
||||||
data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<h2>BASE4 Open Days</h2>
|
|
||||||
<p style="max-width: 60%; margin: auto;">Whether you're a member or just curious, everyone's welcome at our monthly open events. Come camp with us, enjoy guest speakers, take your rig for a spin on the 4x4 track, or just relax by the swimming pool. Saturday’s Open Day includes breakfast and lunch for sale, plus braai fires ready to go—just bring your tongs! It’s the perfect way to experience the spirit of the club and connect with fellow adventurers. </p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="gallery-slider-active">
|
|
||||||
<?php
|
|
||||||
$folder = 'assets/images/opendays/';
|
|
||||||
$images = glob($folder . '*.{jpg,jpeg,png,gif}', GLOB_BRACE);
|
|
||||||
|
|
||||||
// Shuffle and pick first 5
|
|
||||||
shuffle($images);
|
|
||||||
$selected = array_slice($images, 0, 10);
|
|
||||||
|
|
||||||
foreach ($selected as $image) {
|
|
||||||
echo '<div class="gallery-three-item" data-aos="fade-up" data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<div class="image">
|
|
||||||
<img src="' . $image . '" alt="Gallery">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>';
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- <div class="hotel-more-btn text-center mt-40">
|
|
||||||
<a href="destination2.html" class="theme-btn style-four">
|
|
||||||
<span data-hover="Explore More Hotel">Explore More Hotel</span>
|
|
||||||
<i class="fal fa-arrow-right"></i>
|
|
||||||
</a>
|
|
||||||
</div> -->
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<!-- Hotel Area end -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Features Area start -->
|
|
||||||
<section class="features-area pt-100 pb-45 rel z-1">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row align-items-center">
|
|
||||||
<div class="col-xl-6">
|
|
||||||
<div class="features-content-part mb-55" data-aos="fade-left" data-aos-duration="1500"
|
|
||||||
data-aos-offset="50">
|
|
||||||
<div class="section-title mb-20">
|
|
||||||
<h2>Want to get involved?<b>JOIN THE COMMITTEE!</b></h2>
|
|
||||||
<p>Want to be more involved in the adventure? Join our committee and help shape the future of the club! Whether it’s planning epic trips, organizing fun events, or assisting with training, your energy and ideas make all the difference. The club runs on the passion of its members—get stuck in, meet awesome people, and be part of what makes it all happen!</p>
|
|
||||||
<div class="image">
|
|
||||||
<img style="border-radius:10px;" src="assets/images/memories/40.jpg" alt="Hotel">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="col-xl-6" data-aos="fade-right" data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<div class="row pb-25">
|
|
||||||
<div class="section-title text-center counter-text-wrap mb-70" data-aos="fade-up"
|
|
||||||
data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<h2>4WDCSA Committee and Other Office Bearers</h2>
|
|
||||||
<div>
|
|
||||||
<h3>Committee</h3>
|
|
||||||
<li>Chairman - John Runciman</li>
|
|
||||||
<li>National Liaison - Peter Hutchison</li>
|
|
||||||
<li>Treasurer - Doug Timm</li>
|
|
||||||
<li>Outings - John Runciman</li>
|
|
||||||
<li>Events - Noelene Runciman</li>
|
|
||||||
<li>Driver Training - John Runciman</li>
|
|
||||||
<li>Digital Media - Christopher Pinto</li>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="pt-30 pb-20">
|
|
||||||
<h3>Administration</h3>
|
|
||||||
<li>Secretary - Jacqui Boshoff</li>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<p style="font-size:0.8rem;">
|
|
||||||
All portfolio holders/committee members of the 4WDCSA are volunteers and are not paid for their services.<br>The secretary is paid for administrative duties only.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<!-- Features Area end -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Hotel Area start -->
|
|
||||||
<section class="hotel-area bgc-black py-100 rel z-1">
|
|
||||||
<div class="container-fluid">
|
|
||||||
<div class="row justify-content-center">
|
|
||||||
<div class="col-lg-12">
|
|
||||||
<div class="section-title text-white text-center counter-text-wrap mb-70" data-aos="fade-up"
|
|
||||||
data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<h2>4x4 Memories</h2>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="gallery-slider-active"><?php
|
|
||||||
$folder = 'assets/images/memories/';
|
|
||||||
$images = glob($folder . '*.{jpg,jpeg,png,gif}', GLOB_BRACE);
|
|
||||||
|
|
||||||
// Shuffle and pick first 5
|
|
||||||
shuffle($images);
|
|
||||||
$selected = array_slice($images, 0, 20);
|
|
||||||
|
|
||||||
foreach ($selected as $image) {
|
|
||||||
echo '<div class="gallery-three-item" data-aos="fade-up" data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<div class="image">
|
|
||||||
<img src="' . $image . '" alt="Gallery">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>';
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- <div class="hotel-more-btn text-center mt-40">
|
|
||||||
<a href="destination2.html" class="theme-btn style-four">
|
|
||||||
<span data-hover="Explore More Hotel">Explore More Hotel</span>
|
|
||||||
<i class="fal fa-arrow-right"></i>
|
|
||||||
</a>
|
|
||||||
</div> -->
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<!-- Hotel Area end -->
|
|
||||||
|
|
||||||
<!-- CTA Area start -->
|
|
||||||
<section class="cta-area pt-100 rel z-1">
|
|
||||||
<div class="container-fluid">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-xl-4 col-md-6" data-aos="zoom-in-down" data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<div class="cta-item" style="background-image: url(assets/images/trips/1_01.jpg);">
|
|
||||||
<span class="category">Extended Trips</span>
|
|
||||||
<h2>Come and Explore Africa and beyond</h2>
|
|
||||||
<a href="trips.php" class="theme-btn style-two bgc-secondary">
|
|
||||||
<span data-hover="Explore Tours">Explore Trips</span>
|
|
||||||
<i class="fal fa-arrow-right"></i>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="col-xl-4 col-md-6" data-aos="zoom-in-down" data-aos-delay="50" data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<div class="cta-item" style="background-image: url(assets/images/courses/driver_training.png);">
|
|
||||||
<span class="category">Driver Training</span>
|
|
||||||
<h2>Level up your 4x4 Driving Skills</h2>
|
|
||||||
<a href="driver_training.php" class="theme-btn style-two">
|
|
||||||
<span data-hover="Explore Tours">Explore Training</span>
|
|
||||||
<i class="fal fa-arrow-right"></i>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="col-xl-4 col-md-6" data-aos="zoom-in-down" data-aos-delay="100" data-aos-duration="1500" data-aos-offset="50">
|
|
||||||
<div class="cta-item" style="background-image: url(assets/images/base4/camping.jpg);">
|
|
||||||
<span class="category">Events</span>
|
|
||||||
<h2>See whats cooking at BASE4!</h2>
|
|
||||||
<a href="events.php" class="theme-btn style-two bgc-secondary">
|
|
||||||
<span data-hover="Explore Tours">Explore Events</span>
|
|
||||||
<i class="fal fa-arrow-right"></i>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<!-- CTA Area end -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Blog Area start -->
|
|
||||||
<section class="blog-area pt-70 rel z-1">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row justify-content-center">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<!-- Blog Area end -->
|
|
||||||
|
|
||||||
|
|
||||||
<?php include_once("insta_footer.php"); ?>
|
|
||||||
|
|||||||
@@ -1,55 +0,0 @@
|
|||||||
<?php include_once('connection.php');
|
|
||||||
include_once('functions.php');
|
|
||||||
|
|
||||||
session_start();
|
|
||||||
$user_id = $_SESSION['user_id']; // assuming you're storing it like this
|
|
||||||
|
|
||||||
// campsites.php
|
|
||||||
$conn = openDatabaseConnection();
|
|
||||||
|
|
||||||
// Get text inputs
|
|
||||||
$name = $_POST['name'];
|
|
||||||
$desc = $_POST['description'];
|
|
||||||
$lat = $_POST['latitude'];
|
|
||||||
$lng = $_POST['longitude'];
|
|
||||||
$website = $_POST['website'];
|
|
||||||
$telephone = $_POST['telephone'];
|
|
||||||
|
|
||||||
// Handle file upload
|
|
||||||
$thumbnailPath = null;
|
|
||||||
if (isset($_FILES['thumbnail']) && $_FILES['thumbnail']['error'] == 0) {
|
|
||||||
$uploadDir = "assets/uploads/campsites/";
|
|
||||||
if (!is_dir($uploadDir)) {
|
|
||||||
mkdir($uploadDir, 0777, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
$filename = time() . "_" . basename($_FILES["thumbnail"]["name"]);
|
|
||||||
$targetFile = $uploadDir . $filename;
|
|
||||||
|
|
||||||
if (move_uploaded_file($_FILES["thumbnail"]["tmp_name"], $targetFile)) {
|
|
||||||
$thumbnailPath = $targetFile;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = isset($_POST['id']) ? intval($_POST['id']) : 0;
|
|
||||||
|
|
||||||
if ($id > 0) {
|
|
||||||
// UPDATE
|
|
||||||
if ($thumbnailPath) {
|
|
||||||
$stmt = $conn->prepare("UPDATE campsites SET name=?, description=?, latitude=?, longitude=?, website=?, telephone=?, thumbnail=? WHERE id=?");
|
|
||||||
$stmt->bind_param("ssddsssi", $name, $desc, $lat, $lng, $website, $telephone, $thumbnailPath, $id);
|
|
||||||
} else {
|
|
||||||
$stmt = $conn->prepare("UPDATE campsites SET name=?, description=?, latitude=?, longitude=?, website=?, telephone=? WHERE id=?");
|
|
||||||
$stmt->bind_param("ssddssi", $name, $desc, $lat, $lng, $website, $telephone, $id);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// INSERT
|
|
||||||
$stmt = $conn->prepare("INSERT INTO campsites (name, description, latitude, longitude, website, telephone, thumbnail, user_id)
|
|
||||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?)");
|
|
||||||
$stmt->bind_param("ssddsssi", $name, $desc, $lat, $lng, $website, $telephone, $thumbnailPath, $user_id);
|
|
||||||
|
|
||||||
}
|
|
||||||
$stmt->execute();
|
|
||||||
|
|
||||||
header("Location: campsites.php");
|
|
||||||
?>
|
|
||||||
BIN
assets/images/events/medicine.jpg
Normal file
|
After Width: | Height: | Size: 9.3 KiB |
BIN
assets/images/pp/2f40af86bfbe04a5c83bbb6cdf1c1e6b.png
Normal file
|
After Width: | Height: | Size: 291 KiB |
BIN
assets/images/pp/424b31c09e1543a922deb690bfbb57c8.png
Normal file
|
After Width: | Height: | Size: 291 KiB |
BIN
assets/images/pp/4b8bd95296e082031c8ae8c4b35fed88.png
Normal file
|
After Width: | Height: | Size: 291 KiB |
BIN
assets/images/pp/5f9036058b40b2c23052d8226711ac5c.png
Normal file
|
After Width: | Height: | Size: 291 KiB |
BIN
assets/images/pp/7a7b9965853213ea1e4ed1aec4e18ad0.jpg
Normal file
|
After Width: | Height: | Size: 290 KiB |
BIN
assets/images/pp/8bc567fbcdffcf5823845740a54d5e6d.jpg
Normal file
|
After Width: | Height: | Size: 170 KiB |
BIN
assets/images/pp/9a1f344bc68815fa15bb0a1e16017ee6.png
Normal file
|
After Width: | Height: | Size: 2.2 MiB |
BIN
assets/images/pp/b8d7fa81c1ab3e67dc86441b09d927cd.jpg
Normal file
|
After Width: | Height: | Size: 170 KiB |
BIN
assets/images/pp/cc83c3045d2b41073f0939f298d06459.jpg
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
assets/images/pp/e607963d306a19d1df94c50d577ea439.jpg
Normal file
|
After Width: | Height: | Size: 290 KiB |
BIN
assets/images/promo/KaiBroom.jpg
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
assets/images/promo/Nov_promo.jpg
Normal file
|
After Width: | Height: | Size: 340 KiB |
BIN
assets/images/promo/christmas2025.jpg
Normal file
|
After Width: | Height: | Size: 352 KiB |
BIN
assets/images/promo/october_openday.jpg
Normal file
|
After Width: | Height: | Size: 374 KiB |
BIN
assets/images/promo/potjie.jpg
Normal file
|
After Width: | Height: | Size: 334 KiB |
BIN
assets/images/promo/september_openday.jpg
Normal file
|
After Width: | Height: | Size: 482 KiB |
BIN
assets/images/trips/6_01.jpg
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
assets/images/trips/6_02.jpg
Normal file
|
After Width: | Height: | Size: 136 KiB |
BIN
assets/images/trips/6_04.jpg
Normal file
|
After Width: | Height: | Size: 258 KiB |
BIN
assets/images/trips/6_05.jpg
Normal file
|
After Width: | Height: | Size: 95 KiB |
BIN
assets/images/trips/8_01.jpg
Normal file
|
After Width: | Height: | Size: 1.7 MiB |
BIN
assets/images/trips/8_02.jpg
Normal file
|
After Width: | Height: | Size: 131 KiB |
BIN
assets/images/trips/8_03.jpg
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
assets/images/trips/8_04.jpg
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
assets/images/trips/8_05.jpg
Normal file
|
After Width: | Height: | Size: 226 KiB |
BIN
assets/images/trips/9_01.jpg
Normal file
|
After Width: | Height: | Size: 124 KiB |
BIN
assets/images/trips/9_02.jpg
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
assets/images/trips/9_03.jpg
Normal file
|
After Width: | Height: | Size: 119 KiB |
BIN
assets/images/trips/9_04.jpg
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
assets/images/trips/9_05.jpg
Normal file
|
After Width: | Height: | Size: 128 KiB |
@@ -46,7 +46,7 @@
|
|||||||
|
|
||||||
<div class="header-inner rel d-flex align-items-center">
|
<div class="header-inner rel d-flex align-items-center">
|
||||||
<div class="logo-outer">
|
<div class="logo-outer">
|
||||||
<div class="logo"><a href="index.php"><img src="assets/images/logos/logo-two.png" alt="Logo" title="Logo"></a></div>
|
<div class="logo"><a href="index"><img src="assets/images/logos/logo-two.png" alt="Logo" title="Logo"></a></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="nav-outer mx-lg-auto ps-xxl-5 clearfix">
|
<div class="nav-outer mx-lg-auto ps-xxl-5 clearfix">
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
<ul class="navigation clearfix">
|
<ul class="navigation clearfix">
|
||||||
<li class="dropdown current"><a href="#">Home</a>
|
<li class="dropdown current"><a href="#">Home</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="index.php">Travel Agency</a></li>
|
<li><a href="index">Travel Agency</a></li>
|
||||||
<li><a href="index2.html">City Tou</a></li>
|
<li><a href="index2.html">City Tou</a></li>
|
||||||
<li><a href="index3.html">Tour Package</a></li>
|
<li><a href="index3.html">Tour Package</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
@@ -161,7 +161,7 @@
|
|||||||
|
|
||||||
<!--Appointment Form-->
|
<!--Appointment Form-->
|
||||||
<div class="appointment-form">
|
<div class="appointment-form">
|
||||||
<form method="post" action="contact.php">
|
<form method="post" action="contact">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="text" name="text" value="" placeholder="Name" required>
|
<input type="text" name="text" value="" placeholder="Name" required>
|
||||||
</div>
|
</div>
|
||||||
@@ -182,9 +182,9 @@
|
|||||||
|
|
||||||
<!--Social Icons-->
|
<!--Social Icons-->
|
||||||
<div class="social-style-one">
|
<div class="social-style-one">
|
||||||
<a href="contact.php"><i class="fab fa-twitter"></i></a>
|
<a href="contact"><i class="fab fa-twitter"></i></a>
|
||||||
<a href="contact.php"><i class="fab fa-facebook-f"></i></a>
|
<a href="contact"><i class="fab fa-facebook-f"></i></a>
|
||||||
<a href="contact.php"><i class="fab fa-instagram"></i></a>
|
<a href="contact"><i class="fab fa-instagram"></i></a>
|
||||||
<a href="#"><i class="fab fa-pinterest-p"></i></a>
|
<a href="#"><i class="fab fa-pinterest-p"></i></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -201,7 +201,7 @@
|
|||||||
<h2 class="page-title mb-10" data-aos="fade-left" data-aos-duration="1500" data-aos-offset="50">Bali, Indonesia</h2>
|
<h2 class="page-title mb-10" data-aos="fade-left" data-aos-duration="1500" data-aos-offset="50">Bali, Indonesia</h2>
|
||||||
<nav aria-label="breadcrumb">
|
<nav aria-label="breadcrumb">
|
||||||
<ol class="breadcrumb justify-content-center mb-20" data-aos="fade-right" data-aos-delay="200" data-aos-duration="1500" data-aos-offset="50">
|
<ol class="breadcrumb justify-content-center mb-20" data-aos="fade-right" data-aos-delay="200" data-aos-duration="1500" data-aos-offset="50">
|
||||||
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
|
<li class="breadcrumb-item"><a href="index">Home</a></li>
|
||||||
<li class="breadcrumb-item active">Tour Details</li>
|
<li class="breadcrumb-item active">Tour Details</li>
|
||||||
</ol>
|
</ol>
|
||||||
</nav>
|
</nav>
|
||||||
@@ -795,7 +795,7 @@
|
|||||||
<i class="fal fa-arrow-right"></i>
|
<i class="fal fa-arrow-right"></i>
|
||||||
</button>
|
</button>
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<a href="contact.php">Need some help?</a>
|
<a href="contact">Need some help?</a>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
@@ -871,7 +871,7 @@
|
|||||||
<div class="col col-small" data-aos="fade-up" data-aos-duration="1500" data-aos-offset="50">
|
<div class="col col-small" data-aos="fade-up" data-aos-duration="1500" data-aos-offset="50">
|
||||||
<div class="footer-widget footer-text">
|
<div class="footer-widget footer-text">
|
||||||
<div class="footer-logo mb-40">
|
<div class="footer-logo mb-40">
|
||||||
<a href="index.php"><img src="assets/images/logos/logo.png" alt="Logo"></a>
|
<a href="index"><img src="assets/images/logos/logo.png" alt="Logo"></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-map">
|
<div class="footer-map">
|
||||||
<iframe src="https://www.google.com/maps/embed?pb=!1m10!1m8!1m3!1d96777.16150026117!2d-74.00840582560909!3d40.71171357405996!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2sbd!4v1706508986625!5m2!1sen!2sbd" style="border:0; width: 100%;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
|
<iframe src="https://www.google.com/maps/embed?pb=!1m10!1m8!1m3!1d96777.16150026117!2d-74.00840582560909!3d40.71171357405996!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2sbd!4v1706508986625!5m2!1sen!2sbd" style="border:0; width: 100%;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
|
||||||
@@ -899,7 +899,7 @@
|
|||||||
<ul class="list-style-three">
|
<ul class="list-style-three">
|
||||||
<li><a href="about.html">About Company</a></li>
|
<li><a href="about.html">About Company</a></li>
|
||||||
<li><a href="blog.html">Community Blog</a></li>
|
<li><a href="blog.html">Community Blog</a></li>
|
||||||
<li><a href="contact.php">Jobs and Careers</a></li>
|
<li><a href="contact">Jobs and Careers</a></li>
|
||||||
<li><a href="blog.html">latest News Blog</a></li>
|
<li><a href="blog.html">latest News Blog</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -937,7 +937,7 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-5">
|
<div class="col-lg-5">
|
||||||
<div class="copyright-text text-center text-lg-start">
|
<div class="copyright-text text-center text-lg-start">
|
||||||
<p>@Copy 2024 <a href="index.php">Ravelo</a>, All rights reserved</p>
|
<p>@Copy 2024 <a href="index">Ravelo</a>, All rights reserved</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-7 text-center text-lg-end">
|
<div class="col-lg-7 text-center text-lg-end">
|
||||||
|
|||||||
BIN
assets/uploads/campsites/274d8e71982307bc5a699125966d5731.jpg
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
assets/uploads/campsites/3dd0636b3ed6926e10f0387a747d58c1.jpg
Normal file
|
After Width: | Height: | Size: 1.7 MiB |
BIN
assets/uploads/campsites/5a72387fdd1f6fc891e406c55b4b4723.jpg
Normal file
|
After Width: | Height: | Size: 259 KiB |
BIN
assets/uploads/campsites/785baf57034bf35bb3dc7954ca5789b7.jpg
Normal file
|
After Width: | Height: | Size: 259 KiB |
BIN
assets/uploads/campsites/aa2e5d1f0a9a81823b915d203ffadab2.jpg
Normal file
|
After Width: | Height: | Size: 168 KiB |
BIN
assets/uploads/campsites/ae16ea8e89bb83dc3b85c54aa0e3fcec.jpg
Normal file
|
After Width: | Height: | Size: 226 KiB |
BIN
assets/uploads/campsites/c613066cd83537a874355671e0213539.jpg
Normal file
|
After Width: | Height: | Size: 1.7 MiB |
BIN
assets/uploads/campsites/d21ae51aec635de07883d9586a1542df.jpg
Normal file
|
After Width: | Height: | Size: 1.7 MiB |
BIN
assets/uploads/gallery/1/cover_69329485037df.jpg
Normal file
|
After Width: | Height: | Size: 457 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec06c76.jpg
Normal file
|
After Width: | Height: | Size: 663 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec0b2d2.jpg
Normal file
|
After Width: | Height: | Size: 457 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec0c36d.jpg
Normal file
|
After Width: | Height: | Size: 687 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec0d366.jpg
Normal file
|
After Width: | Height: | Size: 254 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec0dd32.jpg
Normal file
|
After Width: | Height: | Size: 280 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec111a0.jpg
Normal file
|
After Width: | Height: | Size: 282 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec11b36.jpg
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec12280.jpg
Normal file
|
After Width: | Height: | Size: 302 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec12de9.jpg
Normal file
|
After Width: | Height: | Size: 364 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec13987.jpg
Normal file
|
After Width: | Height: | Size: 378 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec1438d.jpg
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec1487c.jpg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec14db9.jpg
Normal file
|
After Width: | Height: | Size: 171 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec1567e.jpg
Normal file
|
After Width: | Height: | Size: 607 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec16451.jpg
Normal file
|
After Width: | Height: | Size: 413 KiB |
BIN
assets/uploads/gallery/1/photo_693290ec16cc3.jpg
Normal file
|
After Width: | Height: | Size: 166 KiB |
BIN
assets/uploads/gallery/2/photo_69329220bd980.jpg
Normal file
|
After Width: | Height: | Size: 155 KiB |
BIN
assets/uploads/gallery/2/photo_69329220bdfbf.jpg
Normal file
|
After Width: | Height: | Size: 264 KiB |
BIN
assets/uploads/gallery/2/photo_69329220be409.jpg
Normal file
|
After Width: | Height: | Size: 237 KiB |
BIN
assets/uploads/gallery/2/photo_69329220be7d6.jpg
Normal file
|
After Width: | Height: | Size: 234 KiB |
BIN
assets/uploads/gallery/2/photo_69329220beb72.jpg
Normal file
|
After Width: | Height: | Size: 209 KiB |
BIN
assets/uploads/gallery/2/photo_69329220bef18.jpg
Normal file
|
After Width: | Height: | Size: 293 KiB |
BIN
assets/uploads/gallery/2/photo_69329220bf360.jpg
Normal file
|
After Width: | Height: | Size: 279 KiB |
BIN
assets/uploads/gallery/2/photo_69329220bf725.jpg
Normal file
|
After Width: | Height: | Size: 164 KiB |
BIN
assets/uploads/gallery/2/photo_69329220bfa53.jpg
Normal file
|
After Width: | Height: | Size: 177 KiB |
BIN
assets/uploads/gallery/2/photo_69329220bfe62.jpg
Normal file
|
After Width: | Height: | Size: 457 KiB |
BIN
assets/uploads/gallery/2/photo_69329220c0308.jpg
Normal file
|
After Width: | Height: | Size: 83 KiB |
BIN
assets/uploads/gallery/2/photo_69329220c06cb.jpg
Normal file
|
After Width: | Height: | Size: 560 KiB |
BIN
assets/uploads/gallery/2/photo_69329220c0d2f.jpg
Normal file
|
After Width: | Height: | Size: 514 KiB |
BIN
assets/uploads/gallery/2/photo_69329220c1293.jpg
Normal file
|
After Width: | Height: | Size: 304 KiB |
BIN
assets/uploads/gallery/2/photo_69329220c16c9.jpg
Normal file
|
After Width: | Height: | Size: 301 KiB |
BIN
assets/uploads/gallery/2/photo_69329220c1b9d.jpg
Normal file
|
After Width: | Height: | Size: 592 KiB |
BIN
assets/uploads/gallery/2/photo_69329220c2163.jpg
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
assets/uploads/gallery/2/photo_69329220c24bb.jpg
Normal file
|
After Width: | Height: | Size: 397 KiB |
BIN
assets/uploads/gallery/2/photo_69329220c2a12.jpg
Normal file
|
After Width: | Height: | Size: 571 KiB |
BIN
assets/uploads/gallery/2/photo_69329220c3088.jpg
Normal file
|
After Width: | Height: | Size: 283 KiB |
BIN
assets/uploads/gallery/2/photo_6932937db759f.jpg
Normal file
|
After Width: | Height: | Size: 229 KiB |
BIN
assets/uploads/gallery/2/photo_6932937db7ab2.jpg
Normal file
|
After Width: | Height: | Size: 240 KiB |
BIN
assets/uploads/gallery/2/photo_6932937db7e76.jpg
Normal file
|
After Width: | Height: | Size: 229 KiB |
BIN
assets/uploads/gallery/2/photo_6932937db8219.jpg
Normal file
|
After Width: | Height: | Size: 197 KiB |
BIN
assets/uploads/gallery/2/photo_6932937db8606.jpg
Normal file
|
After Width: | Height: | Size: 329 KiB |
BIN
assets/uploads/gallery/2/photo_6932937db8b5c.jpg
Normal file
|
After Width: | Height: | Size: 593 KiB |
BIN
assets/uploads/gallery/2/photo_6932937db9160.jpg
Normal file
|
After Width: | Height: | Size: 114 KiB |
BIN
assets/uploads/gallery/2/photo_6932937db94ca.jpg
Normal file
|
After Width: | Height: | Size: 258 KiB |
BIN
assets/uploads/gallery/2/photo_6932937db990b.jpg
Normal file
|
After Width: | Height: | Size: 274 KiB |
BIN
assets/uploads/gallery/2/photo_6932937db9d6f.jpg
Normal file
|
After Width: | Height: | Size: 301 KiB |
BIN
assets/uploads/gallery/2/photo_6932937dba1a9.jpg
Normal file
|
After Width: | Height: | Size: 290 KiB |
BIN
assets/uploads/gallery/2/photo_6932937dba5fd.jpg
Normal file
|
After Width: | Height: | Size: 314 KiB |
BIN
assets/uploads/gallery/2/photo_6932937dbaa1e.jpg
Normal file
|
After Width: | Height: | Size: 184 KiB |