Make HTML valid
authorChristian Weiske <cweiske@cweiske.de>
Tue, 12 May 2020 05:32:32 +0000 (07:32 +0200)
committerChristian Weiske <cweiske@cweiske.de>
Tue, 12 May 2020 05:32:32 +0000 (07:32 +0200)
data/templates/discover.tpl.php
data/templates/game.tpl.php
www/ouya-game.css

index 207e900c9120b2d1582396e259a3bcf27fb1f233..a0e239cdcc1c51fe1a4d405c38f9f304a12792bb 100644 (file)
@@ -1,5 +1,5 @@
-<?xml version="1.0" encoding="utf-8"?>
-<html xmlns="http://www.w3.org/1999/xhtml">
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
  <head>
   <meta charset="utf-8"/>
   <title>OUYA: <?= htmlspecialchars($title); ?></title>
@@ -9,7 +9,7 @@
  <body class="discover">
   <header>
    <h1><?= htmlspecialchars($title); ?></h1>
-   <img class="ouyalogo" src="../ouya-logo.grey.svg" alt="OUYA logo" width="20%"/>
+   <img class="ouyalogo" src="../ouya-logo.grey.svg" alt="OUYA logo" width="50"/>
   </header>
 
   <?php foreach ($sections as $section): ?>
@@ -23,7 +23,7 @@
     <section class="tile<?= ($tile->thumb == '') ? ' noimg' : '' ?>">
      <h3 class="title"><a href="<?= htmlspecialchars($tile->detailUrl) ?>"><?= htmlspecialchars($tile->title) ?></a></h3>
      <?php if ($tile->thumb != ''): ?>
-     <a href="<?= htmlspecialchars($tile->detailUrl) ?>"><img src="<?= htmlspecialchars($tile->thumb) ?>"/></a>
+     <a href="<?= htmlspecialchars($tile->detailUrl) ?>"><img src="<?= htmlspecialchars($tile->thumb) ?>" alt="Screenshot of <?= htmlspecialchars($tile->detailUrl) ?>"/></a>
      <?php endif ?>
      <?php if ($tile->type == 'app' && $tile->ratingCount > 0): ?>
      <p class="rating">
index d9e8113ea656c95396ed9e3dd690895dd214f738..0064ba9c1a21f4ff925972bf42865bd82add82d1 100644 (file)
@@ -1,5 +1,5 @@
-<?xml version="1.0" encoding="utf-8"?>
-<html xmlns="http://www.w3.org/1999/xhtml">
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
  <head>
   <meta charset="utf-8"/>
   <title><?= htmlspecialchars($json->title); ?> - OUYA game</title>
@@ -8,7 +8,7 @@
  </head>
  <body class="game">
   <header>
-   <img class="ouyalogo" src="../ouya-logo.grey.svg" alt="OUYA logo" width="20%"/>
+   <img class="ouyalogo" src="../ouya-logo.grey.svg" alt="OUYA logo" width="50"/>
   </header>
   <section class="text">
    <h1><?= htmlspecialchars($json->title); ?></h1>
@@ -61,6 +61,7 @@
   </section>
 
   <section class="buttons">
+   <h2>Links</h2>
    <div>
     <a href="<?= $apkDownloadUrl ?>">Download .apk</a>
     <p>
index 718c3e12aea55f89e397b153c3c669259e5c76d9..611df21337a056797afe58f54f769981b87e5a3a 100644 (file)
@@ -91,7 +91,9 @@ nav {
     max-height: 50vh;
 }
 
-
+.buttons h2 {
+    display: none;
+}
 .buttons a {
     font-size: 1.5rem;
     color: #CCC;