You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
523 B

  1. {% extends "base.html" %}
  2. {% set active_page = "worldmap" %}
  3. {% block title %}World Map{% endblock %}
  4. {% block content %}
  5. <div class="uk-flex uk-flex-center uk-margin-bottom uk-margin-top">
  6. <h1 class="uk-text-center"><strong>Adventurer Conqueror King</strong>World Map</h1>
  7. </div>
  8. <br/>
  9. <div>
  10. <img id="worldmap-img" src="https://acks.atr0phy.net/static/WorldMap.png"/>
  11. </div>
  12. {% endblock %}
  13. {% block head %}
  14. <style>
  15. h1 strong {
  16. display: block;
  17. font-size: 50%;
  18. opacity: 0.65;
  19. }
  20. </style>
  21. {% endblock %}