Skip to content

Instantly share code, notes, and snippets.

@intco
Created May 9, 2014 16:35
Show Gist options
  • Save intco/14d38df13e849c348328 to your computer and use it in GitHub Desktop.
Save intco/14d38df13e849c348328 to your computer and use it in GitHub Desktop.
Template for Contao 2.11 gallery extension (gallery viewer module)
<div class="layout_fullsize block<?php echo $this->class; ?>">
<div class="cover">
<div class="image_container">
<img src="<?php echo $this->src; ?>"<?php echo $this->imgSize; ?> alt="<?php echo $this->alt; ?>">
</div>
</div>
<div class="gallery_info">
<h2><?php echo $this->title; ?></h2>
<div class="description">
<?php echo $this->description; ?>
</div>
</div>
<div class="image_gallery">
<?php foreach ($this->body as $class=>$row): ?>
<div class="<?php echo $class; ?>">
<?php foreach ($row as $col): ?>
<?php if ($col->addImage): ?>
<div class="image_container"<?php if ($col->margin): ?> style="<?php echo $col->margin; ?>"<?php endif; ?>>
<a href="<?php echo $col->src; ?>"<?php echo $col->attributes; ?> title="<?php echo $col->alt; ?>"><img src="<?php echo $col->src; ?>" alt="<?php echo $col->alt; ?>"></a>
</div>
<?php endif; ?>
<?php endforeach; ?>
</div>
<?php endforeach; ?>
</div>
<?php echo $this->pagination; ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment