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.

40 lines
1.6 KiB

  1. {% extends "base.html" %}
  2. {% set active_page = "index" %}
  3. {% block title %}ACKS Toolset Home{% 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>Home</h1>
  7. </div>
  8. <div class="uk-flex uk-flex-bottom uk-flex-center uk-margin-medium uk-margin-large-bottom">
  9. <div class="uk-container uk-container-small">
  10. <p>
  11. Welcome to the Adventurer Conqueror King toolkit for the Legends of Palisma campaign.
  12. You've had a long journey... three months aboard a ship to reach the new continent,
  13. many thousands of miles across the Immortal Sea from Branborne and away from any sense
  14. of familiarity.
  15. </p>
  16. <p>
  17. What adventures await you in an age when empires totter on the brink of war, and terrible
  18. monsters tear at the fragile borderlands of men; when decaying cities teem with chaos and
  19. corruption, where nubile maidens are sacrificed to chthonic cults and nobles live in
  20. decadent pleasure on the toil of slaves; when heroes, wizards, and rogues risk everything
  21. in pursuit of glory, fortune, and power. These are days when adventurers can become
  22. conquerors… and conquerors can become kings!
  23. </p>
  24. <hr class="uk-divider-icon uk-margin-large" />
  25. <img src="{{ url_for('static', filename='home_image.jpg') }}" />
  26. </div>
  27. </div>
  28. {% endblock %}
  29. {% block head %}
  30. <style>
  31. h1 strong {
  32. display: block;
  33. font-size: 50%;
  34. opacity: 0.65;
  35. }
  36. </style>
  37. {% endblock %}