-
Notifications
You must be signed in to change notification settings - Fork 9
Page Examples
Johan Janssens edited this page Mar 10, 2021
·
10 revisions
file: /joomlatools-pages/pages/hello.html
---
title: A HTML page
summary: This page is a static HTML page.
---
<h2>Hello World</h2>
<p>Hello World from HTML!</p>
file: /joomlatools-pages/pages/hello.html.md
---
title: A Markdown page
summary: This page is rendered by the Markdown engine.
---
## Hello World
Hello World from Markdown!
file: /joomlatools-pages/pages/hello.html.php
---
title: A PHP page
summary: This page is rendered by the PHP engine.
---
<h2><?= $title ?></h2>
<? $greeting = 'Hello World' ?>
<?= sprintf('%s from PHP', $greeting); ?>
Got a question or need help? We have a forum on Github Discussions where you can get in touch with us.