Fethiye'de Görülmesi Gereken Yerler
Fethiye'de Görülmesi Gereken Yerler
Sedat Ünal
Türkiye'nin batısında, Akdeniz'in sularına kıyıdaş bir cennet köşesi olan Fethiye, eşsiz doğal güzellikleri ve tarihi mirasıyla ziyaretçilerini büyülüyor. Bu benzersiz şehir, herkesin unutulmaz anılar biriktireceği birçok yerle dolu. İşte Fethiye'de görülmesi gereken bazı özel noktalar:
Kelebekler Vadisi - Binlerce Renkli Kanat
Doğanın muhteşem bir hediyesi olan Kelebekler Vadisi, rengarenk kelebeklerin evi olarak biliniyor. Özellikle ilkbahar ve yaz aylarında, vadiye yayılan binlerce kelebek, ziyaretçilere eşsiz bir görsel şölen sunuyor. Vadide yürüyüş yapabilir, masmavi denizde serinleyebilir ve doğanın huzurunu hissedebilirsiniz.
Kaya Mezarları - Tarihin İzinde Bir Yolculuk
Fethiye'nin tarihi dokusunu keşfetmek isteyenler için kaya mezarları büyüleyici bir seçenek sunuyor. Kayalara oyulmuş antik mezarlar, bölgenin geçmişine dair önemli ipuçları taşıyor. Özellikle Tlos Antik Kenti ve Kayaköy'deki kaya mezarları, tarih tutkunlarını kendine çekiyor.
Gemiler Adası - Huzurun Adası
Fethiye Körfezi'nde bulunan Gemiler Adası, dingin atmosferi ve berrak sularıyla ziyaretçilerini adeta büyülüyor. Ada, doğal güzellikleri keşfetmek, deniz keyfi yapmak ve gün batımını izlemek isteyenler için mükemmel bir nokta.
Fethiye'nin benzersiz güzelliklerini keşfetmek için doğaya adım atın ve unutulmaz anılar biriktirin. Her köşesinde bir hikaye, her manzarasında bir büyü gizli olan bu cennet köşesi, ziyaretçilerine unutulmaz bir deneyim sunmaya hazır.
Fethiye'yi ziyaret etmek, doğanın ve tarihin büyüsüne kapılmak için harika bir fırsat sunuyor. Haydi, bu eşsiz destinasyonu keşfetmeye hazır mısınız?
Ölüdeniz - Türkiye'nin Cennet Köşesi
Fethiye'nin en ünlü plajı olan Ölüdeniz, dünyanın en güzel kumsallarından birine ev sahipliği yapıyor. Berrak turkuaz suları ve muhteşem dağ manzarasıyla bu plaj, yüzme ve su sporları tutkunları için ideal bir destinasyon. Özellikle yamaç paraşütü sevenler için eşsiz bir deneyim sunuyor.
Paylaş
var shareableModelId = 3; var shareableModelClass = 'TE\\Gallery\\Models\\Gallery'; function shareCount(id, model, platform, url) { fetch("https://www.fethiyetv.com/sharecount", { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-CSRF-TOKEN': document.querySelector('meta[name="csrf-token"]')?.getAttribute('content') }, body: JSON.stringify({ id, model, platform, url }) }).catch(err => console.error('Share count fetch error:', err)); } function goSharePopup(url, title, width = 600, height = 400) { const left = (screen.width - width) / 2; const top = (screen.height - height) / 2; window.open( url, title, `width=${width},height=${height},left=${left},top=${top},resizable=yes,scrollbars=yes` ); } async function handleMobileShare(event, title, url) { event.preventDefault(); if (shareableModelId && shareableModelClass) { shareCount(shareableModelId, shareableModelClass, 'native_mobile_share', url); } const isAndroidWebView = navigator.userAgent.includes('Android') && !navigator.share; if (isAndroidWebView) { window.location.href = 'androidshare://paylas?title=' + encodeURIComponent(title) + '&url=' + encodeURIComponent(url); return; } if (navigator.share) { try { await navigator.share({ title: title, url: url }); } catch (error) { if (error.name !== 'AbortError') { console.error('Web Share API failed:', error); } } } else { alert("Bu cihaz paylaşımı desteklemiyor."); } } function initiateDesktopShare(event, platformOverride = null) { event.preventDefault(); const anchor = event.currentTarget; const platform = platformOverride || anchor.dataset.platform; const webShareUrl = anchor.href; const contentUrl = anchor.dataset.shareUrl || webShareUrl; if (shareableModelId && shareableModelClass && platform) { shareCount(shareableModelId, shareableModelClass, platform, contentUrl); } goSharePopup(webShareUrl, platform ? platform.charAt(0).toUpperCase() + platform.slice(1) : "Share"); } function copyURL(event, urlToCopy) { event.preventDefault(); navigator.clipboard.writeText(urlToCopy).then(() => { alert('Bağlantı panoya kopyalandı!'); }).catch(err => { console.error('Could not copy text: ', err); try { const textArea = document.createElement("textarea"); textArea.value = urlToCopy; textArea.style.position = "fixed"; document.body.appendChild(textArea); textArea.focus(); textArea.select(); document.execCommand('copy'); document.body.removeChild(textArea); alert('Bağlantı panoya kopyalandı!'); } catch (fallbackErr) { console.error('Fallback copy failed:', fallbackErr); } }); } function printContent(event) { event.preventDefault(); const triggerElement = event.currentTarget; const contextContainer = triggerElement.closest('.infinite-item') || document; const header = contextContainer.querySelector('.post-header'); const media = contextContainer.querySelector('.news-section .col-lg-8 .inner, .news-section .col-lg-8 .ratio, .news-section .col-lg-8 iframe'); const articleBody = contextContainer.querySelector('.article-text'); if (!header && !media && !articleBody) { window.print(); return; } let printHtml = ''; if (header) { const titleEl = header.querySelector('h1'); const descEl = header.querySelector('.description, h2.lead'); let cleanHeaderHtml = '
'; if (titleEl) cleanHeaderHtml += titleEl.outerHTML; if (descEl) cleanHeaderHtml += descEl.outerHTML; cleanHeaderHtml += '
'; printHtml += cleanHeaderHtml; } if (media) { printHtml += media.outerHTML; } if (articleBody) { const articleClone = articleBody.cloneNode(true); articleClone.querySelectorAll('.post-flash').forEach(function (el) { el.parentNode.removeChild(el); }); printHtml += articleClone.outerHTML; } const iframe = document.createElement('iframe'); iframe.style.position = 'fixed'; iframe.style.right = '0'; iframe.style.bottom = '0'; iframe.style.width = '0'; iframe.style.height = '0'; iframe.style.border = '0'; document.body.appendChild(iframe); const frameWindow = iframe.contentWindow || iframe; const title = document.title || 'Yazdır'; const headStyles = Array.from(document.querySelectorAll('link[rel="stylesheet"], style')) .map(el => el.outerHTML) .join(''); iframe.onload = function () { try { frameWindow.focus(); frameWindow.print(); } finally { setTimeout(function () { document.body.removeChild(iframe); }, 1000); } }; const doc = frameWindow.document; doc.open(); doc.write(` ${title} ${headStyles} html, body { margin: 0; padding: 0; background: #ffffff; } .printed-article { margin: 0; padding: 20px; box-shadow: none; background: #ffffff; }
${printHtml}
`); doc.close(); } var dropdownButton = document.querySelector('.dropdownButton'); if (dropdownButton) { var icon = dropdownButton.querySelector('#icon'); var parentDropdown = dropdownButton.closest('.dropdown'); if (parentDropdown && icon) { parentDropdown.addEventListener('show.bs.dropdown', function () { icon.classList.remove('fa-plus'); icon.classList.add('fa-minus'); }); parentDropdown.addEventListener('hide.bs.dropdown', function () { icon.classList.remove('fa-minus'); icon.classList.add('fa-plus'); }); } }
Saklıkent Kanyonu - Doğanın Gizemli Labirenti
Fethiye'nin sadece birkaç kilometre dışında bulunan Saklıkent Kanyonu, doğanın görkemli bir hediyesi olarak karşımıza çıkıyor. Yüksek kanyon duvarları arasında yürüyüş yapabilir, buz gibi sularla dolu akıntılarda serinleyebilir ve kanyonun mistik atmosferinin tadını çıkarabilirsiniz.
Paylaş
var shareableModelId = 3; var shareableModelClass = 'TE\\Gallery\\Models\\Gallery'; function shareCount(id, model, platform, url) { fetch("https://www.fethiyetv.com/sharecount", { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-CSRF-TOKEN': document.querySelector('meta[name="csrf-token"]')?.getAttribute('content') }, body: JSON.stringify({ id, model, platform, url }) }).catch(err => console.error('Share count fetch error:', err)); } function goSharePopup(url, title, width = 600, height = 400) { const left = (screen.width - width) / 2; const top = (screen.height - height) / 2; window.open( url, title, `width=${width},height=${height},left=${left},top=${top},resizable=yes,scrollbars=yes` ); } async function handleMobileShare(event, title, url) { event.preventDefault(); if (shareableModelId && shareableModelClass) { shareCount(shareableModelId, shareableModelClass, 'native_mobile_share', url); } const isAndroidWebView = navigator.userAgent.includes('Android') && !navigator.share; if (isAndroidWebView) { window.location.href = 'androidshare://paylas?title=' + encodeURIComponent(title) + '&url=' + encodeURIComponent(url); return; } if (navigator.share) { try { await navigator.share({ title: title, url: url }); } catch (error) { if (error.name !== 'AbortError') { console.error('Web Share API failed:', error); } } } else { alert("Bu cihaz paylaşımı desteklemiyor."); } } function initiateDesktopShare(event, platformOverride = null) { event.preventDefault(); const anchor = event.currentTarget; const platform = platformOverride || anchor.dataset.platform; const webShareUrl = anchor.href; const contentUrl = anchor.dataset.shareUrl || webShareUrl; if (shareableModelId && shareableModelClass && platform) { shareCount(shareableModelId, shareableModelClass, platform, contentUrl); } goSharePopup(webShareUrl, platform ? platform.charAt(0).toUpperCase() + platform.slice(1) : "Share"); } function copyURL(event, urlToCopy) { event.preventDefault(); navigator.clipboard.writeText(urlToCopy).then(() => { alert('Bağlantı panoya kopyalandı!'); }).catch(err => { console.error('Could not copy text: ', err); try { const textArea = document.createElement("textarea"); textArea.value = urlToCopy; textArea.style.position = "fixed"; document.body.appendChild(textArea); textArea.focus(); textArea.select(); document.execCommand('copy'); document.body.removeChild(textArea); alert('Bağlantı panoya kopyalandı!'); } catch (fallbackErr) { console.error('Fallback copy failed:', fallbackErr); } }); } function printContent(event) { event.preventDefault(); const triggerElement = event.currentTarget; const contextContainer = triggerElement.closest('.infinite-item') || document; const header = contextContainer.querySelector('.post-header'); const media = contextContainer.querySelector('.news-section .col-lg-8 .inner, .news-section .col-lg-8 .ratio, .news-section .col-lg-8 iframe'); const articleBody = contextContainer.querySelector('.article-text'); if (!header && !media && !articleBody) { window.print(); return; } let printHtml = ''; if (header) { const titleEl = header.querySelector('h1'); const descEl = header.querySelector('.description, h2.lead'); let cleanHeaderHtml = '
'; if (titleEl) cleanHeaderHtml += titleEl.outerHTML; if (descEl) cleanHeaderHtml += descEl.outerHTML; cleanHeaderHtml += '
'; printHtml += cleanHeaderHtml; } if (media) { printHtml += media.outerHTML; } if (articleBody) { const articleClone = articleBody.cloneNode(true); articleClone.querySelectorAll('.post-flash').forEach(function (el) { el.parentNode.removeChild(el); }); printHtml += articleClone.outerHTML; } const iframe = document.createElement('iframe'); iframe.style.position = 'fixed'; iframe.style.right = '0'; iframe.style.bottom = '0'; iframe.style.width = '0'; iframe.style.height = '0'; iframe.style.border = '0'; document.body.appendChild(iframe); const frameWindow = iframe.contentWindow || iframe; const title = document.title || 'Yazdır'; const headStyles = Array.from(document.querySelectorAll('link[rel="stylesheet"], style')) .map(el => el.outerHTML) .join(''); iframe.onload = function () { try { frameWindow.focus(); frameWindow.print(); } finally { setTimeout(function () { document.body.removeChild(iframe); }, 1000); } }; const doc = frameWindow.document; doc.open(); doc.write(` ${title} ${headStyles} html, body { margin: 0; padding: 0; background: #ffffff; } .printed-article { margin: 0; padding: 20px; box-shadow: none; background: #ffffff; }
${printHtml}
`); doc.close(); } var dropdownButton = document.querySelector('.dropdownButton'); if (dropdownButton) { var icon = dropdownButton.querySelector('#icon'); var parentDropdown = dropdownButton.closest('.dropdown'); if (parentDropdown && icon) { parentDropdown.addEventListener('show.bs.dropdown', function () { icon.classList.remove('fa-plus'); icon.classList.add('fa-minus'); }); parentDropdown.addEventListener('hide.bs.dropdown', function () { icon.classList.remove('fa-minus'); icon.classList.add('fa-plus'); }); } }
Yorumlar
(function() { var input = document.querySelector('input[name="_js_token"]'); if (!input) return; var challenge = input.getAttribute('data-challenge'); function generateToken() { if (!challenge) return; var payload = { ch: challenge, t: Math.floor(Date.now() / 1000), r: Math.random().toString(36).substr(2, 9) }; input.value = btoa(JSON.stringify(payload)); } // Hemen token oluştur generateToken(); // Form submit edilmeden önce token'ı güncelle var form = input.closest('form'); if (form) { form.addEventListener('submit', function(e) { generateToken(); }); } })();
Gönder
Serbest Muhabir



