<%= title %>

Edit content displayed on About Us page

View About Us Page
Hero Section
<% if (data.hero?.backgroundImage) { %> <% } %>
Introduction
<% if (data.intro?.image) { %> <% } %>
Mission Section
Images
<% ['main', 'secondary', 'bgShape', 'planeShape', 'topShape', 'globeShape'].forEach(imgKey => { %>
<% }) %>
Features Section
Feature Items
News Section (Blog Preview)
System will automatically fetch the 3 latest posts if no specific blog is selected.

Select blog posts to display on About page. If none are selected, the system will use the 3 latest posts.

<% if (allBlogs && allBlogs.length > 0) { %> <% allBlogs.forEach(blog => { const isSelected = data.news?.selectedBlogIds && data.news.selectedBlogIds.some(id => id.toString() === blog._id.toString()); %>
onclick="event.stopPropagation(); handleAboutCheckboxChange(this)">
<%= blog.title %>

<%= blog.publishedAt ? new Date(blog.publishedAt).toLocaleDateString('vi-VN') : '' %>

<% }) %> <% } else { %>

No published blogs found. Please create some blogs first.

Create Blog
<% } %>