Test apidemo03

20.04.2022

  • Seite mit Layout apidemo03
  • Quelle
  • Beispiel-Layout um den Seiteninhalt und das Änderungsdatum anzuzeigen

Inhalt der Layout-Datei

<!-- apidemo03.html
Quelle:https://datenstrom.se/de/yellow/help/api-for-developers
Beispiel-Layout um den Seiteninhalt und das Änderungsdatum anzuzeigen -->
<?php $this->yellow->layout("header") ?>
<div class="content">
<div class="main" role="main">
<h1><?php echo $this->yellow->page->getHtml("titleContent") ?></h1>
<p><?php echo $this->yellow->page->getDateHtml("modified", "coreDateFormatMedium") ?></p>
<?php echo $this->yellow->page->getContent() ?>
</div>
</div>
<?php $this->yellow->layout("footer") ?>