header.tmpl.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!doctype html>
  2. <HTML lang="ru">
  3. <head>
  4. <title>ВарТанк</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta pragma="no-cache">
  8. <!-- Bootstrap CSS -->
  9. <link href="/static/css/bootstrap.min.css" rel="stylesheet">
  10. <!-- htmx -->
  11. <script src="/static/js/htmx.min.js"></script>
  12. <script src="/static/js/hyperscript.min.js"></script>
  13. </head>
  14. <body hx-boost="true">
  15. <div id="main">
  16. <div class="container-fluid"><!-- начало боди-контейнера -->
  17. <div class="container-fluid align-middle"><!-- контейнер заголовка -->
  18. <div class="row border align-items-center">
  19. <div class="col-auto border border-primary rounded btn btn-dark">
  20. <h1>WarTank</h1>
  21. </div>
  22. <div class="col">
  23. <a class="btn btn-primary" href="/">Главная</a>
  24. <a class="btn btn-primary" href="/gui/bot">Список ботов</a>
  25. </div>
  26. </div>
  27. </div>
  28. <div class="counter">
  29. <button _="on click increment the textContent of the next <output/>">Прибавить</button>
  30. [<output>0</output>]
  31. <button _="on click decrement the textContent of the previous <output/>">убавить</button><br>
  32. </div>