1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-07 23:38:29 +02:00
This commit is contained in:
Ryan Cramer
2023-09-07 08:35:01 -04:00
parent b824f645a9
commit 7ed74281ad
2 changed files with 14 additions and 5 deletions

View File

@@ -1,11 +1,15 @@
<?php namespace ProcessWire; <?php namespace ProcessWire;
// Template file for pages using the “basic-page” template // Template file for pages using the “basic-page” template
// -------------------------------------------------------
// The #content div in this file will replace the #content div in _main.php
// when the Markup Regions feature is enabled, as it is by default.
// You can also append to (or prepend to) the #content div, and much more.
// See the Markup Regions documentation:
// https://processwire.com/docs/front-end/output/markup-regions/
?> ?>
<div id="content"> <div id="content">
Basic page content Basic page content
</div> </div>

View File

@@ -1,10 +1,15 @@
<?php namespace ProcessWire; <?php namespace ProcessWire;
// Template file for “home” template used by the homepage // Template file for “home” template used by the homepage
// ------------------------------------------------------
// The #content div in this file will replace the #content div in _main.php
// when the Markup Regions feature is enabled, as it is by default.
// You can also append to (or prepend to) the #content div, and much more.
// See the Markup Regions documentation:
// https://processwire.com/docs/front-end/output/markup-regions/
?> ?>
<div id="content"> <div id="content">
Homepage content Homepage content
</div> </div>