| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <!DOCTYPE html>
- <html lang='en'>
- <head>
- <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
- <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
- <title><?=$page->title?></title>
- <link rel='shortcut icon' href='<?=$page->favicon?>'/>
- <!-- CSS files -->
- <link rel='stylesheet' type='text/css' href='<?=$path["css"]?>ui.css'/>
- <link rel='stylesheet' type='text/css' href='<?=$path["css"]?>home.css'/>
- <!-- Script files -->
- <script src="<?=$path["js"]?>ui.js"></script>
- <!-- Meta tags -->
- <link rel='canonical' href='<?=$page->canonical?>'/>
- <link rel='author' href='<?=$page->author?>'/>
- <link rel='publisher' href='<?=$page->author?>'/>
- <meta name='description' content='<?=$page->description?>'/>
- <meta property='og:title' content='<?=$page->title?>'/>
- <meta property='og:url' content='<?=$page->canonical?>'/>
- <meta property='og:description' content='<?=$page->description?>'/>
- <meta property='og:image' content='<?=$page->icon?>'/>
- <meta property='og:site_name' content='<?=$page->name?>'/>
- <meta property='og:type' content='website'/>
- <meta property='og:locale' content='en'/>
- <meta name='twitter:card' content='summary'/>
- <meta name='twitter:title' content='<?=$page->title?>'/>
- <meta name='twitter:description' content='<?=$page->description?>'/>
- <meta name='twitter:image' content='<?=$page->icon?>'/>
- <meta name='twitter:url' content='<?=$page->canonical?>'/>
- <meta name='robots' content='index follow'/>
- </head>
- <body>
- <?php
- include __DIR__ . "/inc/header.php";
- ?>
- <section class='content'>
- <h2>
- <span>
- Summoners War DataBase
- </span>
- </h2>
- <article>
- <h3>
- <a href='<?=$root?>catalog'>
- Catalog
- </a>
- </h3>
- <p>
- Check out the catalog of every monster in the game.
- <br/>
- Plan on which monster to look forward or which one is worth building.
- </p>
- </article>
- <article>
- <h3>
- <a href='<?=$root?>monsters'>
- Monsters
- </a>
- </h3>
- <p>
- Review your monster collection.
- <br/>
- Get detailed info about their stats, skills-ups, equiped runes...
- </p>
- </article>
- <article>
- <h3>
- <a href='<?=$root?>runes'>
- Runes
- </a>
- </h3>
- <p>
- Review your rune collection.
- <br/>
- Use a variety of filters to navigate your rune inventory, getting every piece if info about them at first glance.
- </p>
- </article>
- <article>
- <h3>
- <a href='<?=$root?>fusion'>
- Fusion
- </a>
- </h3>
- <p>
- Check out fhe fusion diagrams
- <br/>
- Get a glance at the ingredients and resources you need for yoour next fusion.
- </p>
- </article>
- <article>
- <h3>
- <a href='<?=$root?>report'>
- Reports
- </a>
- </h3>
- <p>
- Get useful info to improve your gameplay.
- <ul>
- <li>
- Learn which of your monsters are in greater need of Devilmons.
- </li>
- <li>
- See the equiped runes that can be replaced with better ones from your inventory.
- </li>
- </ul>
- </p>
- </article>
- </section>
- <?php
- include __DIR__ . "/inc/footer.php";
- ?>
- </body>
- </html>
|