Advertisement
Stiepen

Twig Template for File list

Mar 25th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.90 KB | None | 0 0
  1. {#
  2.     This File is a Twig template. Please do not edit it unless you know what you are doing.
  3. #}
  4. <html lang="en">
  5.     {% if err %}
  6.         <div class="alert alert-error">
  7.             <button type="button" class="close" data-dismiss="alert">&times;</button>
  8.             <strong>ERROR:</strong> {{err}}
  9.         </div>
  10.     {% endif %}
  11.  
  12.     <head>
  13.         <meta charset="utf-8">
  14.         <title>Download MaxCraft MCUpdater</title>
  15.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  16.         <meta name="author" content="max96at">
  17.         <link href="../../assets/css/bootstrap.css" rel="stylesheet">
  18.         <link href="../../assets/css/custom.css" rel="stylesheet">
  19.         <link href="../../assets/css/bootstrap-responsive.css" rel="stylesheet">
  20.     </head>
  21.    
  22.     <body>
  23.         <div class="container">
  24.        
  25.             <h1>MCUpdater Downloads</h1>
  26.             <hr>
  27.             <table class="table custom-table-striped custom-table-hover table-bordered">
  28.                 <thead>
  29.                     <tr>
  30.                         <th>Package</th>
  31.                         {% for h in headers%}
  32.                             <th>{{h}}</th>
  33.                         {% endfor %}
  34.                     </tr>
  35.                 </thead>
  36.                 <tbody>
  37.                     {% for pkg in pkgs %}
  38.                         <td>{{ pgk.getTitle() }}</td>
  39.                         {% set files = pkg.getFiles() %}
  40.                         {% for i in count(files) %}
  41.                             {% set file = files[i] %}
  42.                             <td><a href="dl/{{pkg.getName()}}/{{i}}/{{file.file}}">{{file.title}}</a></td>
  43.                         {% endfor %}
  44.                     {% endfor %}
  45.                 </tbody>
  46.             </table>
  47.         </div>
  48.     </body>
  49.     <script src="../assets/js/jquery.js"></script>
  50.     <script src="../assets/js/bootstrap.js"></script>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement