Blame view
sources/apps/gallery/templates/index.php
659 Bytes
|
03e52840d
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<div id="controls">
<div id='breadcrumbs'></div>
<?php if ($_['encryptionEnabled'] === false): ?>
<span class="right">
<button class="share"><?php p($l->t("Share")); ?></button>
<a class="share" data-item-type="gallery" data-item="" title="<?php p($l->t("Share")); ?>"
data-possible-permissions="31"></a>
</span>
<?php endif; ?>
</div>
<div id='gallery' class="hascontrols"></div>
<div id='slideshow'>
<input type='button' class='svg next'/>
<input type='button' class='svg play'/>
<input type='button' class='svg pause'/>
<input type='button' class='svg previous'/>
<input type='button' class='svg exit'/>
<div class='progress'/>
</div>
|