cl-deck-builder2/templates/workbench/tabs.html

47 lines
2.8 KiB
HTML
Raw Normal View History

2024-01-21 02:35:35 -05:00
{% extends "layouts/minimal.html" %}
{% block title %}{_ "Tabs" _}{% endblock %}
{% block content %}
{% include "tabs-js.html" %}
<section class="hero is-success">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title">
JS for Bulma Tabs
</h1>
</div>
</div>
<div class="hero-foot">
<nav class="tabs is-boxed is-fullwidth is-large">
<div class="container">
<ul>
<li class="tab is-active" onclick="openTab(event,'WebDev')"><a >Web Development</a></li>
<li class="tab" onclick="openTab(event,'WebAud')"><a >Website Audit</a></li>
<li class="tab" onclick="openTab(event,'Support')"><a >Support</a></li>
</ul>
</div>
</nav>
</div>
</section>
<div class="container section">
<div id="WebDev" class="content-tab" >
<p>
test1<br>
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>
</div>
<div id="WebAud" class="content-tab" style="display:none">
<p>
test2<br>
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>
</div>
<div id="Support" class="content-tab" style="display:none">
<p>
test3 <br>
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>
</div>
</div>
{% endblock %}