Update README to explain multi-file page functionality Add example content files demonstrating the feature Improve folder type detection logic Implement new routing for page-type folders Add support for mixed content types in single pages Update navigation and metadata handling for multi-file pages Remove legacy frontpage.php in favor of multi-file approach Improve file-based routing documentation Add examples of different content types working together Update router to handle multi-file content rendering Implement proper sorting of content files Add best practices for multi-file content organization
16 lines
720 B
PHP
16 lines
720 B
PHP
<article>
|
|
<h2>Dynamic Content Example</h2>
|
|
|
|
<p>This section is a PHP file that generates dynamic content. Here are some examples:</p>
|
|
|
|
<div style="background: #f0f9ff; border: 1px solid #0284c7; padding: 1.5rem; border-radius: 8px; margin: 1.5rem 0;">
|
|
<h3>Server Information</h3>
|
|
<ul style="list-style: none; padding: 0;">
|
|
<li><strong>Current Time:</strong> <?= date('H:i:s') ?></li>
|
|
<li><strong>Today's Date:</strong> <?= date('l, F j, Y') ?></li>
|
|
<li><strong>PHP Version:</strong> <?= PHP_VERSION ?></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<p>PHP files can access all the same variables and functions available throughout FolderWeb, making it easy to create dynamic, data-driven content.</p>
|
|
</article>
|