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.

39 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 any sense of familiarity.
  14. </p>
  15. <p>
  16. What adventures await you in an age when empires totter on the brink of war, and terrible
  17. monsters tear at the fragile borderlands of men; when decaying cities teem with chaos and
  18. corruption, where nubile maidens are sacrificed to chthonic cults and nobles live in
  19. decadent pleasure on the toil of slaves; when heroes, wizards, and rogues risk everything
  20. in pursuit of glory, fortune, and power. These are days when adventurers can become
  21. conquerors… and conquerors can become kings!
  22. </p>
  23. <hr class="uk-divider-icon uk-margin-large" />
  24. <img src="{{ url_for('static', filename='home_image.jpg') }}" />
  25. </div>
  26. </div>
  27. {% endblock %}
  28. {% block head %}
  29. <style>
  30. h1 strong {
  31. display: block;
  32. font-size: 50%;
  33. opacity: 0.65;
  34. }
  35. </style>
  36. {% endblock %}