Advertisement
fvelle

index.tpl

Apr 25th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.29 KB | None | 0 0
  1. <div class="wrapper style2">
  2.     <div id="main" class="container">
  3.         <div id="content">
  4.             <article class="box post">
  5.                 <header>
  6.                     <h2>Codex liederen</h2>
  7.                 </header>
  8.            
  9.                 <table id="codexContainer" class="datatablesContainer">
  10.                     <thead>
  11.                         <tr>
  12.                             <th>Pagina</th>
  13.                             <th>Lied</th>
  14.                             <th>Grootte</th>
  15.                             <th>Download</th>
  16.                         </tr>
  17.                     </thead>
  18.                     <tbody>
  19.                         {iteration:iFiles}
  20.                         <tr>
  21.                             <td>{$page|utf8encode}</td>
  22.                             <td>{$title|utf8encode}</td>
  23.                             <td>{$size|utf8encode}</td>
  24.                             <td>
  25.                                 <a href="{$dlUrl}" target="_blank">
  26.                                     {$file|utf8encode}
  27.                                 </a>
  28.                             </td>
  29.                         </tr>
  30.                         {/iteration:iFiles}
  31.                     </tbody>
  32.                 </table>
  33.             </article>
  34.         </div>
  35.     </div>
  36. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement