Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
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.

47 lines
2.8KB

  1. {% extends "layouts/minimal.html" %}
  2. {% block title %}{_ "Tabs" _}{% endblock %}
  3. {% block content %}
  4. {% include "tabs-js.html" %}
  5. <section class="hero is-success">
  6. <div class="hero-body">
  7. <div class="container has-text-centered">
  8. <h1 class="title">
  9. JS for Bulma Tabs
  10. </h1>
  11. </div>
  12. </div>
  13. <div class="hero-foot">
  14. <nav class="tabs is-boxed is-fullwidth is-large">
  15. <div class="container">
  16. <ul>
  17. <li class="tab is-active" onclick="openTab(event,'WebDev')"><a >Web Development</a></li>
  18. <li class="tab" onclick="openTab(event,'WebAud')"><a >Website Audit</a></li>
  19. <li class="tab" onclick="openTab(event,'Support')"><a >Support</a></li>
  20. </ul>
  21. </div>
  22. </nav>
  23. </div>
  24. </section>
  25. <div class="container section">
  26. <div id="WebDev" class="content-tab" >
  27. <p>
  28. test1<br>
  29. Overview Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
  30. </div>
  31. <div id="WebAud" class="content-tab" style="display:none">
  32. <p>
  33. test2<br>
  34. Details Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
  35. </div>
  36. <div id="Support" class="content-tab" style="display:none">
  37. <p>
  38. test3 <br>
  39. Specification Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
  40. </div>
  41. </div>
  42. {% endblock %}