Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?PHP
- $less = new lessc;
- $less->checkedCompile($this->url->getThemePath('/assets/style.less'), $this->url->getThemePath('/assets/style.css'))
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
- <script type="text/javascript" src="<?=$this->url->get('/assets/thirdparty/jQuery/plugins/jQuery.scrollview.js')?>"></script>
- <script type="text/javascript" src="<?=$this->url->getThemeUri('/assets/script.js')?>"></script>
- <link type="text/css" rel="stylesheet" href="<?=$this->url->getThemeUri('/assets/style.css')?>" />
- </head>
- <body>
- <header>
- <a href="<?=$this->url->get('/')?>" class="logo"><img src="<?=$this->url->getThemeUri('/assets/images/logo.png')?>" /></a>
- <nav class="hoverdeet">
- <?PHP
- if(!$user) {
- ?>
- <a href="<?=$this->url->get('/login')?>">
- <div>
- <br />
- <i class="icon-unlock-alt"></i>
- <div>login</div>
- </div>
- </a>
- <a href="<?=$this->url->get('/register')?>">
- <div>
- <br />
- <i class="icon-user"></i>
- <div>register</div>
- </div>
- </a>
- <?PHP
- } else {
- foreach($user->trainer->party as $pokemon) {
- $this->partial('hoverdeet/trainer_pokemon', [
- 'trainer_pokemon' => $pokemon,
- 'url' => null
- ]);
- }
- ?>
- <a href="<?=$this->url->get('/logout')?>">
- <div class="trainer">
- <img src="http://galaxisdark.com/assets/sprites/trainers/1.png" />
- <div><?=$user->username?></div>
- </div>
- <div>
- <br />
- <i class="icon-lock"></i>
- <div>logout</div>
- </div>
- </a>
- <?PHP
- }
- ?>
- </nav>
- </header>
- <section class="body">
- <section class="left"></section>
- <section class="middle">
- <header>
- <menu>
- <a>
- <img src="<?=$this->url->getBigFatcowIcon('vcard')?>" />
- profile
- </a>
- <a>
- <img src="<?=$this->url->getBigFatcowIcon('chart_bar')?>" />
- rankings
- </a>
- <a>
- <img src="<?=$this->url->getBigFatcowIcon('world')?>" />
- explore
- </a>
- <a>
- <img src="<?=$this->url->get('/assets/images/pokedex-icon.png')?>" />
- dexter
- </a>
- <a>
- <img src="<?=$this->url->getBigFatcowIcon('boxing_glove')?>" />
- gyms
- </a>
- <a>
- <img src="<?=$this->url->getBigFatcowIcon('information')?>" />
- information
- </a>
- <a>
- <img src="<?=$this->url->getBigFatcowIcon('cog')?>" />
- settings
- </a>
- </menu>
- </header>
- <?PHP echo $this->getContent(); ?>
- <footer>
- GalaxisDark © <?=date('Y')?>, All rights reserved.
- [
- <a href="<?=$this->url->get('/privacy_policy')?>">Privacy Policy</a> |
- <a href="<?=$this->url->get('/terms_of_service')?>">Terms of Service</a> |
- <a href="<?=$this->url->get('/extra_legal_information')?>">Extra legal information</a>
- ]
- [
- <a href="<?=$this->url->get('/about_us')?>">About Us</a> |
- <a href="<?=$this->url->get('/faq')?>">F.A.Q</a> |
- <a href="<?=$this->url->get('/credits')?>">Credits</a>
- ]
- <br />
- GalaxisDark is a Pokémon fan game, we are in no way related nor affiliated with Nintendo/Game Freak Inc. or any other company that owns rights to Pokémon.
- </footer>
- </section>
- <section class="right"></section>
- </section>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement