Advertisement
Guest User

issue.php

a guest
Mar 17th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.23 KB | None | 0 0
  1. <?php snippet('header') ?>
  2.  
  3.   <main class="main" role="main">
  4.     <h1><time><?php echo $page->year() ?></time>/<?php echo $page->number() ?> &nbsp;<?php echo $page->title()->html() ?></h1>
  5.  
  6.    
  7.       <?php foreach($page->images()->sortBy('sort', 'asc') as $image): ?>
  8.       <figure>
  9.         <img src="<?php echo thumb($image, array('width' => 880, 'height' => 900, 'upscale' => true))->url();?>" alt="<?php echo $page->title()->html() ?>">
  10.       </figure>
  11.       <?php endforeach ?>
  12.  
  13.  
  14.     <h2>In this issue:</h2>
  15.  
  16.     <ul class="responsive-thumbnails" data-max-width="300px" data-max-height="300px" data-padding="10px">
  17.     <?php foreach($page->children() as $subpage): ?>  
  18.     <li>
  19.       <a href="<?php echo $subpage->url() ?>">
  20.         <?php echo thumb($subpage->image(), array('width' => 300, 'height' => 200, 'crop' => true)); ?>
  21.       </a>
  22.       <div class="metadata">
  23.         <strong class="project_author"><?php echo html($subpage->author()) ?></strong>
  24.         <span class="project_title"><?php echo html($subpage->title()) ?></span>
  25.       </div>
  26.     </li>
  27.     <?php endforeach ?>
  28.     </ul>
  29.  
  30.     <div class="text">
  31.       <?php echo $page->editorial()->kirbytext() ?>
  32.     </div>  
  33.   </main>
  34.  
  35. <?php snippet('footer') ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement