{% extends 'ampbase.html.twig' %} {% block links %} {% endblock %} {% block css %} {{ parent() }} .research-title { font-size: 1.4em; line-height: 1.6; color: #222; margin: 10px 15px; } .research-subtitle { font-size: 1.1em; color: #666; margin: 5px 15px 15px; } .meta-section { padding: 10px 15px; color: #666; font-size: 0.95em; line-height: 2; } .meta-section i { margin-left: 4px; color: #888; } .meta-divider { color: #ccc; margin: 0 6px; } .section-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px 15px; margin: 12px 15px; } .section-card h3 { font-size: 1.1em; color: #333; margin: 0 0 12px; padding-bottom: 8px; border-bottom: 2px solid #007bff; } .section-card p { font-size: 1em; line-height: 1.8; text-align: justify; } .field-tag, .keyword-tag, .author-tag { display: inline-block; padding: 4px 10px; border-radius: 15px; margin: 3px; font-size: 0.85em; text-decoration: none; } .field-tag { background: #e9ecef; color: #495057; } .keyword-tag { background: #d4edda; color: #155724; } .author-tag { background: #fff3cd; color: #856404; } .download-box { background: #f8f9fa; border-radius: 8px; padding: 20px 15px; margin: 12px 15px; text-align: center; } .download-link { display: inline-block; padding: 12px 24px; background: #28a745; color: #fff; border-radius: 5px; text-decoration: none; font-weight: 500; font-size: 1em; } .login-link { display: inline-block; padding: 12px 24px; background: #007bff; color: #fff; border-radius: 5px; text-decoration: none; font-weight: 500; } .promo-box { border-radius: 10px; padding: 16px 20px; margin-bottom: 18px; color: #fff; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; } .promo-box h4 { margin: 0 0 4px 0; font-size: 15px; font-weight: 700; } .promo-box p { margin: 0; font-size: 12px; opacity: 0.9; } .promo-cta { display: inline-block; padding: 7px 18px; border-radius: 18px; text-decoration: none; font-weight: 600; font-size: 13px; white-space: nowrap; } .promo-playground { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } .promo-playground .promo-cta { background: #fff; color: #667eea; } .promo-ocr { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); } .promo-ocr .promo-cta { background: #fff; color: #f5576c; } .promo-references { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); } .promo-references .promo-cta { background: #fff; color: #4facfe; } {% endblock %} {% block title %} {% if research.arabicFullTitle is not null %} {{ research.arabicFullTitle }} {% else %} {{ research.englishFullTitle }} {% endif %} {% endblock %} {% block body %} {# Promotional Box - randomly show one (server-side) #} {% set promoIndex = random(2) %} {% if promoIndex == 0 %}

✨ {{ 'playground_banner.title'|trans({}, 'Academia') }}

{{ 'playground_banner.description'|trans({}, 'Academia') }}

{{ 'playground_banner.cta'|trans({}, 'Academia') }}
{% elseif promoIndex == 1 %}

📄 {{ 'ocr_banner.title'|trans({}, 'Academia') }}

{{ 'ocr_banner.description'|trans({}, 'Academia') }}

{{ 'ocr_banner.cta'|trans({}, 'Academia') }}
{% else %}

📚 {{ 'references_banner.title'|trans({}, 'Academia') }}

{{ 'references_banner.description'|trans({}, 'Academia') }}

{{ 'references_banner.cta'|trans({}, 'Academia') }}
{% endif %} {# Title #}

{{ research.arabicFullTitle }}

{% if research.englishFullTitle %}

{{ research.englishFullTitle }}

{% endif %} {# Authors #} {% if research.textualPublisher %}
{{ 'amp.authors'|trans({}, 'Academia')|default('الباحثون') }}: {% if research.textualPublisher is iterable %} {% for author in research.textualPublisher %} {{ author }} {% endfor %} {% else %} {{ research.textualPublisher }} {% endif %}
{% endif %} {# Metadata #}
{% if research.arabicCategoryName %} {{ research.arabicCategoryName }} | {% endif %} {% if research.arabicPublisherName %} {{ research.arabicPublisherName }} | {% endif %} {% if research.publicationDate %} {{ research.publicationDate }} {% endif %}
{# Fields #} {% if research.arabicFieldNames|length > 0 %}
{{ 'amp.fields'|trans({}, 'Academia')|default('المجالات') }}: {% for fieldName in research.arabicFieldNames %} {{ fieldName }} {% endfor %}
{% endif %} {# Keywords #} {% if research.tags|length > 0 %}
{{ 'amp.keywords'|trans({}, 'Academia')|default('الكلمات المفتاحية') }}: {% for tag in research.tags %} {% if tag is iterable or tag.context is defined %} {{ tag.context }} {% else %} {{ tag }} {% endif %} {% endfor %}
{% endif %} {# Download #}
{% if app.user %} {{ 'amp.view_full'|trans({}, 'Academia')|default('عرض الصفحة الكاملة') }} {% else %}

{{ 'amp.login_prompt'|trans({}, 'Academia')|default('سجل الدخول للوصول الكامل') }}

{{ 'amp.login'|trans({}, 'Academia')|default('تسجيل الدخول') }} {% endif %}
{# Arabic Abstract #} {% if research.arabicAbstract %}

{{ 'research.arabicAbstract'|trans({}, 'Academia') }}

{{ research.arabicAbstract }}

{% endif %} {# English Abstract #} {% if research.englishAbstract %}

{{ 'research.englishAbstract'|trans({}, 'Academia') }}

{{ research.englishAbstract }}

{% endif %} {% endblock %}