| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- global $RUNE_STAT;
- global $QUALITY;
- ?>
- <!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"]?>report_runeupgrade.css'/>
- <link rel='stylesheet' type='text/css' href='<?=$path["css"]?>filters.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 id='body_report_runeupgrade'>
- <?php
- include __DIR__ . "/inc/header.php";
- ?>
- <section class='filters'>
- <h2>
- <span>
- Report filters
- </span>
- </h2>
- <?php
- $filters = $page->filters;
- $custom_filters = $page->custom_filters;
- include __DIR__ . "/inc/filter_report_runeupgrade.php";
- ?>
- </section> <!-- #filters -->
- <?php
- foreach ($page->upgrades as $upgrade){
- ?>
- <section class='content'>
- <h2>
- <span>
- <?=$upgrade["unit"]->title?>
- </span>
- </h2>
- <article>
- <div class='monster'>
- <div class='profile'>
- <div class='monster_panel'>
- <?=html_unit_panel($upgrade["unit"])?>
- </div>
- </div> <!-- .profile -->
- </div>
- <div class='monster_runes'>
- <?php
- foreach ($upgrade["upgrade"] as $rupgrade){
- ?>
- <?=html_rune_table($rupgrade["rune"])?>
- <div class='alternatives'>
- <?php
- foreach ($rupgrade["alternative"] as $alternative){
- ?>
- <?=html_rune_table($alternative, $alternative->assigned_to)?>
- <?php
- }
- ?>
- </div>
- <?php
- }
- ?>
- </div> <!-- .monster_runes -->
- </article>
- </section>
- <?php
- }
- include __DIR__ . "/inc/footer.php";
- ?>
- </body>
- </html>
|