34 lines
2.0 KiB
PHP
34 lines
2.0 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
require_once __DIR__ . '/includes/app.php';
|
|
$newsItems = kei_news();
|
|
render_head('Berita', 'Latest company updates from KOBA Entertainment Indonesia.');
|
|
render_header('news');
|
|
?>
|
|
<main>
|
|
<section class="page-hero section-space-sm">
|
|
<div class="container-fluid kei-container narrow-copy">
|
|
<span class="eyebrow"<?= copy_attrs(['id' => 'Berita', 'jp' => 'ニュース']) ?>>Berita</span>
|
|
<h1 class="page-title"<?= copy_attrs(['id' => 'Update terbaru KOBA Entertainment.', 'jp' => 'KOBA Entertainmentの最新情報。']) ?>>Update terbaru KOBA Entertainment.</h1>
|
|
<p class="page-copy"<?= copy_attrs(['id' => 'Ringkasan artikel berikut memberi konteks tentang program, standard produksi, dan momentum kolaborasi KEI.', 'jp' => '以下の記事は、KEIのプログラム、制作基準、協業の動きを要約しています。']) ?>>Ringkasan artikel berikut memberi konteks tentang program, standard produksi, dan momentum kolaborasi KEI.</p>
|
|
</div>
|
|
</section>
|
|
<section class="section-space-sm border-top-soft">
|
|
<div class="container-fluid kei-container">
|
|
<div class="row g-4">
|
|
<?php foreach ($newsItems as $article): ?>
|
|
<div class="col-md-6 col-xl-4">
|
|
<article class="news-card h-100">
|
|
<span class="news-date"><?= h($article['date']) ?></span>
|
|
<h2 class="h4"<?= copy_attrs($article['title']) ?>><?= h(copy_text($article['title'])) ?></h2>
|
|
<p<?= copy_attrs($article['excerpt']) ?>><?= h(copy_text($article['excerpt'])) ?></p>
|
|
<a href="article.php?slug=<?= urlencode($article['slug']) ?>" class="text-link"<?= copy_attrs(['id' => 'Baca Detail', 'jp' => '詳細を見る']) ?>>Baca Detail</a>
|
|
</article>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
<?php render_footer(); ?>
|