diff options
Diffstat (limited to 'h-source/Application/Views')
-rw-r--r-- | h-source/Application/Views/Desktop/footer.php | 4 | ||||
-rw-r--r-- | h-source/Application/Views/Mobile/footer.php | 18 |
2 files changed, 15 insertions, 7 deletions
diff --git a/h-source/Application/Views/Desktop/footer.php b/h-source/Application/Views/Desktop/footer.php index 56dbcda..1eafcc6 100644 --- a/h-source/Application/Views/Desktop/footer.php +++ b/h-source/Application/Views/Desktop/footer.php @@ -26,11 +26,11 @@ </div> <div class="footer_credits_box"> - <a href="<?php echo $this->baseUrl."/credits/index/$lang";?>">credits</a> + <a href="<?php echo $this->baseUrl."/credits/index/$lang";?>"><?php echo gtext("credits");?></a> </div> <div class="footer_credits_box"> - <a href="<?php echo $this->baseUrl."/contact/index/$lang";?>">contact</a> + <a href="<?php echo $this->baseUrl."/contact/index/$lang";?>"><?php echo gtext("contact us");?></a> </div> </div> <!--fine footer--> diff --git a/h-source/Application/Views/Mobile/footer.php b/h-source/Application/Views/Mobile/footer.php index 830f2bd..489f53a 100644 --- a/h-source/Application/Views/Mobile/footer.php +++ b/h-source/Application/Views/Mobile/footer.php @@ -21,11 +21,19 @@ ?> <div id="footer" data-role="footer"> - <div class="ui-grid-b"> - <div class="ui-block-a"><a rel='external' href="<?php echo $this->baseUrl."/contact/index/$lang";?>">contact</a></div> - <div class="ui-block-b"><a rel='external' href="<?php echo $this->baseUrl."/credits/index/$lang";?>">credits</a></div> - <div class="ui-block-c">The <a rel='external' href="<?php echo $this->baseUrl."/project/index/$lang";?>"><?php echo Website::$projectName;?></a> Project</div> - </div><!-- /grid-b --> + + <div data-theme='b' data-role="navbar"> + <ul> + <li><a <?php echo $tm['contact']; ?> rel='external' href="<?php echo $this->baseUrl."/contact/index/$lang";?>"><?php echo gtext("contact us");?></a></li> + <li><a <?php echo $tm['credits']; ?> rel='external' href="<?php echo $this->baseUrl."/credits/index/$lang";?>"><?php echo gtext("credits");?></a></li> + <li><a <?php echo $tm['project']; ?> rel='external' href="<?php echo $this->baseUrl."/project/index/$lang";?>">The <?php echo Website::$projectName;?> Project</a></li> + </ul> + </div><!-- /navbar --> + <div data-role="navbar"> + <ul> + <li><a href="<?php echo $this->baseUrl."/home/index/$lang?version=desktop";?>"><?php echo gtext("desktop version");?></a></li> + </ul> + </div><!-- /navbar --> </div> <!--fine footer--> </div> <!--fine page--> |