@model List @{ var isEn = (ViewBag.Culture as string) == "en"; var isEs = (ViewBag.Culture as string) == "es-PY" || (ViewBag.Culture as string) == "es"; string T(string pt, string es, string en) => isEn ? en : isEs ? es : pt; ViewData["Title"] = T("Tutoriais QR Code", "Tutoriales Código QR", "QR Code Tutorials"); Layout = "~/Views/Shared/_Layout.cshtml"; }

@T("Tutoriais QR Code", "Tutoriales Código QR", "QR Code Tutorials")

@T("Aprenda tudo sobre QR Codes com nossos tutoriais completos e passo a passo", "Aprende todo sobre códigos QR con nuestros tutoriales completos paso a paso", "Learn everything about QR Codes with our complete step-by-step tutorials")

@if (Model.Any()) {
@foreach (var article in Model) {
@if (!string.IsNullOrEmpty(article.Image)) { @article.Title }
@article.Title

@article.Description

@article.Date.ToString("dd MMM yyyy") | @article.ReadingTimeMinutes min
@T("Ler Tutorial", "Leer Tutorial", "Read Tutorial")
}
} else { }

@T("Pronto para criar seu QR Code?", "¿Listo para crear tu código QR?", "Ready to create your QR Code?")

@T("Gere QR codes profissionais em segundos com nossa ferramenta ultrarrápida!", "¡Genera códigos QR profesionales en segundos con nuestra herramienta ultrarrápida!", "Generate professional QR codes in seconds with our ultra-fast tool!")

@T("Criar QR Code Agora", "Crear Código QR Ahora", "Create QR Code Now")