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.

19 lines
424 B

  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. {% endblock %}
  9. {% block head %}
  10. <style>
  11. h1 strong {
  12. display: block;
  13. font-size: 50%;
  14. opacity: 0.65;
  15. }
  16. </style>
  17. {% endblock %}