Skip to content
Back to the list

acp.net.vn

ACP — Asia Consumer Products

Corporate site for a logistics and distribution company

A corporate site for a consumer goods distributor, covering logistics, warehousing, supermarket delivery, import and news. EJS templates are pre-rendered to static HTML before deployment, so the site serves fast and needs no server-side runtime.

§ 01Algorithm

render-static.js — dựng sẵn lúc build, không render lúc chạy
build:
  for page in [index, about, logistics, warehouse,
               supermarket, import, news, contact, 404, 500]:
      html ← ejs.render(template[page], data)
      write(static/<page>.html)

runtime:
  nginx trả thẳng file .html          # 0 lượt gọi template engine

# Đánh đổi: nội dung đổi thì phải build lại.
# Đổi lấy: không runtime phía server → không có gì để sập, không có gì để vá.

§ 02Highlights

  • Business lines: logistics, warehousing, supermarket, import
  • EJS templates pre-rendered to static HTML before deploy
  • No server-side runtime needed in production

§ 03Screens

ACP — Asia Consumer Products01
ACP — Asia Consumer Products02
ACP — Asia Consumer Products03