<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Multilingual Test</title> <style> body { font-family: Arial, sans-serif; padding: 20px; } .block { margin-bottom: 40px; } .ar { direction: rtl; text-align: right; font-family: "Segoe UI", Tahoma; } </style></head><body>
<!-- English Variant --> <div class="block en"> <h1>Test Header (English)</h1> <p> This is a test paragraph for the English version of the blog post. It helps verify that the correct language content loads when using the /en/ URL prefix. </p> </div>
<!-- Arabic Variant --> <div class="block ar"> <h1>عنوان تجريبي (عربي)</h1> <p> هذا فقرة تجريبية للإصدار العربي من منشور المدونة. تساعد في التأكد من أن المحتوى العربي يظهر عند استخدام بادئة الرابط /ar/. </p> </div>
</body></html>