7f08c44f3a7b3807681b3cc16e823e45933e9c29
[stouyapi.git] / data / templates / discover.tpl.php
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
3  <head>
4   <meta charset="utf-8"/>
5   <title>OUYA: <?= htmlspecialchars($title); ?></title>
6   <meta name="generator" content="stouyapi"/>
7   <link rel="stylesheet" type="text/css" href="../ouya-discover.css"/>
8   <link rel="icon" href="../favicon.ico"/>
9  </head>
10  <body class="discover">
11   <header>
12    <h1><?= htmlspecialchars($title); ?></h1>
13    <img class="ouyalogo" src="../ouya-logo.grey.svg" alt="OUYA logo" width="50"/>
14   </header>
15
16   <?php foreach ($sections as $section): ?>
17   <section class="row">
18    <?php if ($section->title): ?>
19    <h2><?= htmlspecialchars($section->title) ?></h2>
20    <?php endif ?>
21
22    <div class="tiles">
23     <?php foreach ($section->tiles as $tile): ?>
24     <section class="tile<?= ($tile->thumb == '') ? ' noimg' : '' ?>">
25      <h3 class="title"><a href="<?= htmlspecialchars($tile->detailUrl) ?>"><?= htmlspecialchars($tile->title) ?></a></h3>
26      <?php if ($tile->thumb != ''): ?>
27      <a href="<?= htmlspecialchars($tile->detailUrl) ?>"><img src="<?= htmlspecialchars($tile->thumb) ?>" alt="Screenshot of <?= htmlspecialchars($tile->detailUrl) ?>"/></a>
28      <?php endif ?>
29      <?php if ($tile->type == 'app' && $tile->ratingCount > 0): ?>
30      <p class="rating">
31       <span class="average average-<?= round($tile->rating) ?>"><?= $tile->rating ?></span>
32       <span class="count">(<?= $tile->ratingCount ?>)</span>
33      </p>
34      <?php endif ?>
35     </section>
36     <?php endforeach; ?>
37    </div>
38
39   </section>
40   <?php endforeach; ?>
41
42   <nav>
43    <?php foreach ($navLinks as $url => $title): ?>
44     <a rel="up" href="<?= htmlspecialchars($url) ?>"><?= htmlspecialchars($title) ?></a>
45    <?php endforeach ?>
46   </nav>
47  </body>
48 </html>