report.php 3.6 KB

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