Weitere Elemente
Auf dieser Seite werden die Inhaltselemente Tabelle und Akkordeon vorgestellt.
Das Inhaltselement Tabelle
Die folgende Tabelle zeigt Titel und Interpreten des Putumayo Café Samplers.
| Nr. | Künstler | Titel | Album |
|---|---|---|---|
| 01 | Giorgio Conte | Cannelloni | Italian Café |
| 02 | Maria de Barros | Mi Nada Um Ca Tem | Women of Africa |
| 03 | Beethova Obas | Rasanblé | Music from the Chocolate Lands |
| 04 | Anna de Hollanda | Samba Triste | Acoustic Brazil |
| 05 | Samite | Wasuze Otya? | Music from the Coffee Lands |
| 06 | Zulya | Saginou | Music from the Tea Lands |
| 07 | Gare Du Nord | How Was It For You? | Euro Lounge |
| 08 | Marta Gómez | La Ronda | Women of Latin America |
| 09 | Baguette Quartette | En Douce | French Café |
| 10 | Topsy Chapman and the Pros | Baby Won't You Please Come Home | New Orleans |
Das Inhaltselement Markdown
Ein normaler Absatz wird im HTML vom Element p umschlossen. Im Markdown müssen Sie dazu gar nichts machen, einfach nur eine leere Zeile nach einem Absatzende.
Listen sind in Markdown sehr viel einfacher als in HTML:
- Montag
- Dienstag
- Mittwoch
Markdown-Erfinder John Gruber hat auf seiner Website Daring Fireball auch eine Syntax-Übersicht veröffentlicht.
Das Inhaltselement Code
Mit dem Inhaltselement Code können Sie hervorragend Quelltext im Frontend darstellen.
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>">
<head>
<?php $this->block('head'); ?>
<meta charset="<?php echo $this->charset; ?>">
<title><?php echo $this->title; ?></title>
<base href="<?php echo $this->base; ?>">
<?php $this->block('meta'); ?>
<meta name="robots" content="<?php echo $this->robots; ?>">
<meta name="description" content="<?php echo $this->description; ?>">
<meta name="keywords" content="<?php echo $this->keywords; ?>">
<meta name="generator" content="Contao Open Source CMS">
<?php $this->endblock(); ?>
<?php echo $this->viewport; ?>
<?php echo $this->framework; ?>
<?php echo $this->stylesheets; ?>
<?php echo $this->mooScripts; ?>
<?php echo $this->head; ?>
<?php $this->block('html5shiv'); ?>
<!--[if lt IE 9]><script src="<?php echo TL_ASSETS_URL; ?>assets/html5shiv/<?php echo $GLOBALS['TL_ASSETS']['HTML5SHIV']; ?>/html5shiv-printshiv.js"></script><![endif]-->
<?php $this->endblock(); ?>
<?php $this->endblock(); ?>
</head>