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.

32 lines
1.2 KiB

  1. {% extends "base.html" %}
  2. {% set active_page = "worldmap" %}
  3. {% block title %}Maps{% 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>Maps</h1>
  7. </div>
  8. <br/>
  9. <div class="uk-container uk-container-small">
  10. <ul class="uk-subnav uk-subnav-pill uk-flex uk-flex-center" uk-switcher>
  11. <li><a href="#">World Map</a></li>
  12. <li><a href="#">Continent Overview</a></li>
  13. <li><a href="#">Continent Full</a></li>
  14. </ul>
  15. <ul class="uk-switcher uk-margin" uk-lightbox>
  16. <li><a href="{{ url_for('static', filename='WorldMap.png') }}"><img src="{{ url_for('static', filename='WorldMap.png') }}"/></a></li>
  17. <li><div>1 hex = 96 miles</div><a href="{{ url_for('static', filename='PalismaWorld.png') }}"><img src="{{ url_for('static', filename='PalismaWorld.png') }}"/></a></li>
  18. <li><div>1 hex = 24 miles</div><a href="{{ url_for('static', filename='PalismaContinent.png') }}"><img src="{{ url_for('static', filename='PalismaContinent.png') }}"/></a></li>
  19. </ul>
  20. </div>
  21. {% endblock %}
  22. {% block head %}
  23. <style>
  24. h1 strong {
  25. display: block;
  26. font-size: 50%;
  27. opacity: 0.65;
  28. }
  29. </style>
  30. {% endblock %}