footer.php 910 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Site footer view.
  4. *
  5. * To be included from all views.
  6. *
  7. * @category View
  8. */
  9. ?>
  10. <footer>
  11. <table id='footer_table'>
  12. <tr>
  13. <td id='footer_left'>
  14. Version <?=APP::VERSION?>. Developed by <a href='https://inigovalentin.com'>I&ntilde;igo Valentin</a>.
  15. <br/>
  16. <br/>
  17. Source code available on <a href='https://github.com'>Github</a> under the GPLv3.
  18. </td>
  19. <td id='footer_right'>
  20. Neither I nor this tool are affiliated with or endorsed by <a href='http://com2us.com/'>Com2uS</a> in any way. The Summoners War logo and the monster images are property of their respective owners (Com2US, probably). Monsters images and info are parsed from <a href='https://swarfarm.com'>https://swarfarm.com</a>.
  21. </td>
  22. </tr>
  23. </table>
  24. </footer>