<%
let placeholderImage = '/images/placeholder.jpg';
if (route.type === 'city') {
placeholderImage = '/images/city-tour-placeholder.webp';
} else if (route.type === 'mountain') {
placeholderImage = '/images/mountain-placeholder.jpg';
} else if (route.type === 'fishing') {
placeholderImage = '/images/fish-placeholder.jpg';
}
%>
<% if (route.image_url && route.image_url.trim()) { %>
<% } %>
<% if (route.is_featured) { %>
<% } %>
<% if (route.type === 'city') { %>
Городской тур
<% } else if (route.type === 'mountain') { %>
Горный поход
<% } else if (route.type === 'fishing') { %>
Рыбалка
<% } %>
<% if (route.difficulty_level) { %>
<%= route.difficulty_level === 'easy' ? 'Легко' : route.difficulty_level === 'moderate' ? 'Средне' : 'Сложно' %>
<% } %>
<%= route.title %>
<%= route.description %>
₩<%= formatCurrency(route.price) %>
<%= route.duration %> дн.
<% if (route.guide_name) { %>
Гид: <%= route.guide_name %>
<% } %>
Подробнее