<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[Catatan Harian: Alur Kerja Layout View pada CodeIgniter 4: Penjelasan Extend, Section, EndSection, Include, dan RenderSection}]]></title>
	<link>https://sharka.site/3blog/blog/view/55/alur-kerja-layout-view-pada-codeigniter-4-penjelasan-extend-section-endsection-include-dan-rend</link>
	<atom:link href="https://sharka.site/3blog/blog/view/55/alur-kerja-layout-view-pada-codeigniter-4-penjelasan-extend-section-endsection-include-dan-rend" rel="self" type="application/rss+xml" />
	<description><![CDATA[}]]></description>
		<item>
	<guid isPermaLink="true">https://sharka.site/3blog/blog/view/55/alur-kerja-layout-view-pada-codeigniter-4-penjelasan-extend-section-endsection-include-dan-rend</guid>
	<pubDate>Wed, 22 Oct 2025 16:41:26 +0800</pubDate>
	<link>https://sharka.site/3blog/blog/view/55/alur-kerja-layout-view-pada-codeigniter-4-penjelasan-extend-section-endsection-include-dan-rend</link>
	<title><![CDATA[Alur Kerja Layout View pada CodeIgniter 4: Penjelasan Extend, Section, EndSection, Include, dan RenderSection]]></title>
	<description><![CDATA[<pre style="background-color:#f8f9fa;border-radius:8px;border:1px solid #ccc;font-family:Consolas, monospace;font-size:14px;padding:12px;">+-------------------------------------------+
|          LAYOUT UTAMA (main.php)          |
|-------------------------------------------|
| &lt;!DOCTYPE html&gt;                           |
| &lt;html&gt;                                    |
| &lt;head&gt;                                    |
|   &lt;title&gt;Game Peluang&lt;/title&gt;             |
| &lt;/head&gt;                                   |
| &lt;body&gt;                                    |
|                                           |
|   &lt;?= $this-&gt;include('layout/navbar_game') ?&gt;   &lt;-- Include komponen kecil
|                                           |
|   &lt;!-- Tempat isi halaman muncul --&gt;      |
|   &lt;?= $this-&gt;renderSection('content') ?&gt;  &lt;-- Menampilkan isi section
|                                           |
|   &lt;?= $this-&gt;include('layout/footer') ?&gt;  &lt;-- Include footer
|                                           |
| &lt;/body&gt;                                   |
| &lt;/html&gt;                                   |
+-------------------------------------------+
                 ▲
                 |
                 |  (extend)
                 |
+-------------------------------------------+
|      HALAMAN ANAK (materi.php)            |
|-------------------------------------------|
| &lt;?= $this-&gt;extend('layout/main') ?&gt;       |  &lt;-- Pakai layout utama
|                                           |
| &lt;?= $this-&gt;section('content') ?&gt;          |  &lt;-- Mulai bagian isi
|   &lt;h1&gt;Materi Game&lt;/h1&gt;                    |
|   &lt;p&gt;Belajar peluang dengan menyenangkan&lt;/p&gt; |
| &lt;?= $this-&gt;endSection() ?&gt;                |  &lt;-- Akhiri bagian isi
+-------------------------------------------+
</pre>]]></description>
	<dc:creator>Muh.Taqiuddin.S</dc:creator>		</item>
</channel>
</rss>
