Blame view

sources/apps/gallery/templates/public.php 1 KB
42e4f8d60   Kload   add all apps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  <div class="wrapper"><!-- for sticky footer -->
  
  <header>
  	<div id="header">
  		<a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud">
  			<img class="svg" src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="<?php p($theme->getName()); ?>" /></a>
  		<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
  		<div class="header-right">
  			<span id="details"><?php print_unescaped($l->t('%s shared <strong>%s</strong> with you', array($_['displayName'], $_['albumName']))) ?></span>
  		</div>
  	</div>
  </header>
  <div id="content">
  	<div id="controls">
  		<div id='breadcrumbs'></div>
  		<div id='openAsFileListButton' class="button"><?php p($l->t('File list')) ?></div>
  	</div>
  
  	<div id='gallery' class="hascontrols" data-token="<?php isset($_['token']) ? p($_['token']) : p(false) ?>"></div>
  </div>
  
  	<div class="push"></div><!-- for sticky footer -->
  </div>
  
  <footer>
  	<p class="info">
  		<?php print_unescaped($theme->getLongFooter()); ?>
  	</p>
  </footer>