templates/contact.html.twig line 1

  1. {# templates/contact.html.twig #}
    {% extends "base.html.twig" %}
    {% block title %}
    Contact Us{% if journal is defined and journal is not null and journal.title is defined %} - {{ journal.title }}{% endif %}
    {% endblock %}
    
    {% block metas %}
    <meta name="description" content="Contact Us{% if journal is defined and journal is not null and journal.title is defined %} - {{ journal.title }}{% else %} - Medivance Science Press{% endif %}. We value your feedback and inquiries!">
    <meta name="keywords" content="Contact Us, Editorial Office{% if journal is defined and journal is not null and journal.title is defined %}, {{ journal.title }}{% else %}, Medivance Science Press{% endif %}">
    {% endblock %}
    
    {% block body %}
    {{ include('inc/header.html.twig') }}
    
    {% if journal is defined and journal is not null %}
        {{ include('inc/journal-header.html.twig') }}
        <section class="journal">
            {{ include('inc/journal-menu.html.twig') }}
        </section>
    {% endif %}
    
    <section class="page">
        <section class="block">
            <div class="container">
                <div class="row">
                    <div class="col-lg-12">
                        <h2>Contact Us{% if journal is defined and journal is not null and journal.title is defined %} - {{ journal.title }}{% endif %}</h2>
    
                        <p>We value your feedback and inquiries! If you have questions or need assistance, please feel free to reach out to us using the contact information below.</p>
    
                        <p><strong>Mailing Address:</strong> 29-149/A, Lane # 4, New Vidya Nagar Colony, Hyderbad 500056, India.</p>
    
                        <h3>Official E-mail Addresses</h3>
                        <h4>Editorial Office:</h4>
                        <p>For questions related to submissions, editorial processes, or publication, please reach out to:</p>
    
                        {% if journalEmail is defined and journalEmail is not empty %}
                            <p><a href="mailto:{{ journalEmail }}">{{ journalEmail }}</a></p>
                        {% elseif journal is defined and journal is not null and journal.email is defined and journal.email is not empty %}
                            <p><a href="mailto:{{ journal.email }}">{{ journal.email }}</a></p>
                        {% else %}
                            <ul>
                                {% for item in allJournalContacts %}
                                    <li><strong>{{ item.title }}:</strong> <a href="mailto:{{ item.email }}">{{ item.email }}</a></li>
                                {% endfor %}
                            </ul>
                        {% endif %}
    
                        <p>We are here to assist you and look forward to connecting with you! Thank you for your interest in <strong>{% if journal is defined and journal is not null and journal.title is defined %}{{ journal.title }}{% else %}Medivance Science Press{% endif %}</strong>.</p>
                    </div>
                </div>
            </div>
        </section>
    </section>
    {{ include('inc/contact-form.html.twig') }}
    {{ include('inc/footer.html.twig') }}
    
    {% endblock %}