home.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <!DOCTYPE html>
  2. <html lang='en'>
  3. <head>
  4. <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
  5. <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
  6. <title><?=$page->title?></title>
  7. <link rel='shortcut icon' href='<?=$page->favicon?>'/>
  8. <!-- CSS files -->
  9. <link rel='stylesheet' type='text/css' href='<?=$path["css"]?>ui.css'/>
  10. <link rel='stylesheet' type='text/css' href='<?=$path["css"]?>home.css'/>
  11. <!-- Script files -->
  12. <script src="<?=$path["js"]?>ui.js"></script>
  13. <!-- Meta tags -->
  14. <link rel='canonical' href='<?=$page->canonical?>'/>
  15. <link rel='author' href='<?=$page->author?>'/>
  16. <link rel='publisher' href='<?=$page->author?>'/>
  17. <meta name='description' content='<?=$page->description?>'/>
  18. <meta property='og:title' content='<?=$page->title?>'/>
  19. <meta property='og:url' content='<?=$page->canonical?>'/>
  20. <meta property='og:description' content='<?=$page->description?>'/>
  21. <meta property='og:image' content='<?=$page->icon?>'/>
  22. <meta property='og:site_name' content='<?=$page->name?>'/>
  23. <meta property='og:type' content='website'/>
  24. <meta property='og:locale' content='en'/>
  25. <meta name='twitter:card' content='summary'/>
  26. <meta name='twitter:title' content='<?=$page->title?>'/>
  27. <meta name='twitter:description' content='<?=$page->description?>'/>
  28. <meta name='twitter:image' content='<?=$page->icon?>'/>
  29. <meta name='twitter:url' content='<?=$page->canonical?>'/>
  30. <meta name='robots' content='index follow'/>
  31. </head>
  32. <body>
  33. <?php
  34. include __DIR__ . "/inc/header.php";
  35. ?>
  36. <section class='content'>
  37. <h2>
  38. <span>
  39. Summoners War DataBase
  40. </span>
  41. </h2>
  42. <article>
  43. <h3>
  44. <a href='<?=$root?>catalog'>
  45. Catalog
  46. </a>
  47. </h3>
  48. <p>
  49. Check out the catalog of every monster in the game.
  50. <br/>
  51. Plan on which monster to look forward or which one is worth building.
  52. </p>
  53. </article>
  54. <article>
  55. <h3>
  56. <a href='<?=$root?>monsters'>
  57. Monsters
  58. </a>
  59. </h3>
  60. <p>
  61. Review your monster collection.
  62. <br/>
  63. Get detailed info about their stats, skills-ups, equiped runes...
  64. </p>
  65. </article>
  66. <article>
  67. <h3>
  68. <a href='<?=$root?>runes'>
  69. Runes
  70. </a>
  71. </h3>
  72. <p>
  73. Review your rune collection.
  74. <br/>
  75. Use a variety of filters to navigate your rune inventory, getting every piece if info about them at first glance.
  76. </p>
  77. </article>
  78. <article>
  79. <h3>
  80. <a href='<?=$root?>fusion'>
  81. Fusion
  82. </a>
  83. </h3>
  84. <p>
  85. Check out fhe fusion diagrams
  86. <br/>
  87. Get a glance at the ingredients and resources you need for yoour next fusion.
  88. </p>
  89. </article>
  90. <article>
  91. <h3>
  92. <a href='<?=$root?>report'>
  93. Reports
  94. </a>
  95. </h3>
  96. <p>
  97. Get useful info to improve your gameplay.
  98. <ul>
  99. <li>
  100. Learn which of your monsters are in greater need of Devilmons.
  101. </li>
  102. <li>
  103. See the equiped runes that can be replaced with better ones from your inventory.
  104. </li>
  105. </ul>
  106. </p>
  107. </article>
  108. </section>
  109. <?php
  110. include __DIR__ . "/inc/footer.php";
  111. ?>
  112. </body>
  113. </html>