| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <!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"]?>runes.css'/>
- <!-- Script files -->
- <script src="<?=$path["js"]?>ui.js"></script>
- <script src="<?=$path["js"]?>runes.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 onLoad='loadRunes();'>
- <?php
- include __DIR__ . "/inc/header.php";
- ?>
- <div id='content'>
- <div class='section'>
- <h3 class='section_title'>
- Rune collection
- </h3>
- <div id='rune_list'>
- <img class='loader' alt='Loading...' src='<?$path["img"]["layout"]?>control/loader.png'/>
- </div> <!-- #rune_list -->
- </div> <!-- .section -->
- </div> <!-- .content -->
- <div id='cover'></div>
- <div id='viewer' class='section'>
- <div id='viewer_wait'>
- <img class='loader' alt='Loading...' src='<?$path["img"]["layout"]?>control/loader.png'/>
- </div>
- <div id='viewer_info'>
- </div>
- </div> <!-- #viewer -->
- <div id='new'>
- <div class='rune_circle'>
- <img class='rune_circle_slots' src='<?=$path["img"]["layout"]?>rune/Rune_slots.png'/>
- <?php
- for ($i = 1; $i < 7; $i ++){
- ?>
- <div class='rune rune_<?=$i?>'>
- <a href='javascript:selectNewRuneSlot(<?=$i?>);'>
- <img class='rune_base rune_base_<?=$i?>' src='<?=$path["img"]["rune"]?>base.png'/>
- <img class='rune_icon rune_icon_<?=$i?>' src='<?=$path["img"]["rune"]?>Energy.png'/>
- <span class='rune_level rune_level_<?=$i?>'>
- +15
- </span>
- <span class='rune_stars rune_stars_<?=$i?>'>
- <span class='rune_stars_num'>1</span>
- <img class='rune_stars_star' src='<?=$path["img"]["layout"]?>icon/star.png'/>
- </span>
- </a>
- </div>
- <?php
- }
- ?>
- </div> <!-- .rune_circle -->
- </div> <!-- #new -->
- <?php
- include __DIR__ . "/inc/footer.php";
- ?>
- </body>
- </html>
|