report.php 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. /**
  3. * Main report view.
  4. *
  5. * Contains the view layout and ome code to present the data.
  6. *
  7. * @category View
  8. * @property_read Report_Page $page The page model.
  9. */
  10. ?>
  11. <!DOCTYPE html>
  12. <html lang='en'>
  13. <head>
  14. <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
  15. <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
  16. <title><?=$page->title?></title>
  17. <link rel='shortcut icon' href='<?=$page->favicon?>'/>
  18. <!-- CSS files -->
  19. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>ui.css'/>
  20. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>report.css'/>
  21. <!-- Meta tags -->
  22. <link rel='canonical' href='<?=$page->canonical?>'/>
  23. <link rel='author' href='<?=$page->author?>'/>
  24. <link rel='publisher' href='<?=$page->author?>'/>
  25. <meta name='description' content='<?=$page->description?>'/>
  26. <meta property='og:title' content='<?=$page->title?>'/>
  27. <meta property='og:url' content='<?=$page->canonical?>'/>
  28. <meta property='og:description' content='<?=$page->description?>'/>
  29. <meta property='og:image' content='<?=$page->icon?>'/>
  30. <meta property='og:site_name' content='<?=$page->name?>'/>
  31. <meta property='og:type' content='website'/>
  32. <meta property='og:locale' content='en'/>
  33. <meta name='twitter:card' content='summary'/>
  34. <meta name='twitter:title' content='<?=$page->title?>'/>
  35. <meta name='twitter:description' content='<?=$page->description?>'/>
  36. <meta name='twitter:image' content='<?=$page->icon?>'/>
  37. <meta name='twitter:url' content='<?=$page->canonical?>'/>
  38. <meta name='robots' content='index follow'/>
  39. </head>
  40. <body id='body_reports'>
  41. <?php
  42. include __DIR__ . "/inc/header.php";
  43. ?>
  44. <aside>
  45. <h2>
  46. Reports
  47. </h2>
  48. <p>
  49. Reports that will help you progress in the game.
  50. </p>
  51. </aside>
  52. <main>
  53. <section class='content report'>
  54. <h2>
  55. Pending skill-ups
  56. </h2>
  57. <article>
  58. <img alt=' ' src='<?=URL::IMG["UNIT"]?>00015105.png'> <!-- Devilmon image -->
  59. <p>
  60. Shows a list of the monstes in need of skilling-up
  61. It sorts monster not by the absolute ammount of remaining power-ups, but by a ponderated list tht takes into account to which skills the previous power ups have gone, placing more value in the more advanced skills.
  62. </p>
  63. <a class='a_button' href='/<?=$UID?>/report/skillup/'>
  64. Go
  65. </a>
  66. </article>
  67. </section>
  68. <section class='content report'>
  69. <h2>
  70. Runes to improve
  71. </h2>
  72. <article class='report'>
  73. <img alt=' ' src='<?=URL::IMG["GRIND"]?>gem_inmemorial.png'>
  74. <p>
  75. Shows monsters with runes that can be grinded or enchanted.
  76. It list the grindstones and gems that are available for each rune.
  77. </p>
  78. <a class='a_button' href='/<?=$UID?>/report/rune_enchantment/'>
  79. Go
  80. </a>
  81. </article>
  82. </section>
  83. </main>
  84. <?php
  85. include __DIR__ . "/inc/footer.php";
  86. ?>
  87. </body>
  88. </html>