/ Published in: PHP

Contao Inhaltselement Downloads als Liste
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!-- indexer::stop --> <div class="<?php echo $this->class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>> <?php if ($this->headline): ?> <<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>> <?php endif; ?> <ul class="downloads"> <?php foreach ($this->files as $file): ?> <li><img src="<?php echo $file['icon']; ?>" width="18" height="18" alt="" class="mime_icon" /> <a href="<?php echo $file['href']; ?>" title="<?php echo $file['title']; ?>"><?php echo $file['link']; ?> <span class="size">(<?php echo $file['filesize']; ?>)</span></a></li> <?php endforeach; ?> </ul> </div> <!-- indexer::continue -->
Comments
