forked from TrueCloudLab/dot-hugo
modified element page
This commit is contained in:
parent
94d0294ef6
commit
0427e200be
4 changed files with 11 additions and 6 deletions
|
@ -94,19 +94,19 @@ Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime
|
||||||
|
|
||||||
#### Tab
|
#### Tab
|
||||||
|
|
||||||
{{% tabs %}}
|
{{< tabs >}}
|
||||||
{{% tab "first" %}}
|
{{% tab "first" %}}
|
||||||
This is first tab
|
This is first tab
|
||||||
{{% /tab %}}
|
{{%/ tab %}}
|
||||||
|
|
||||||
{{% tab "second" %}}
|
{{% tab "second" %}}
|
||||||
this is second tab
|
this is second tab
|
||||||
{{% /tab %}}
|
{{%/ tab %}}
|
||||||
|
|
||||||
{{% tab "third" %}}
|
{{% tab "third" %}}
|
||||||
this is third tab
|
this is third tab
|
||||||
{{% /tab %}}
|
{{%/ tab %}}
|
||||||
{{% tabs %}}
|
{{</ tabs >}}
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
|
{{ $_hugo_config := `{ "version": 1 }` }}
|
||||||
<div class="notices {{ .Get 0 }}" {{ if len .Params | eq 2 }} id="{{ .Get 1 }}" {{ end }}><p>{{ .Inner }}</p></div>
|
<div class="notices {{ .Get 0 }}" {{ if len .Params | eq 2 }} id="{{ .Get 1 }}" {{ end }}><p>{{ .Inner }}</p></div>
|
|
@ -1,3 +1,5 @@
|
||||||
|
{{ $_hugo_config := `{ "version": 1 }` }}
|
||||||
|
|
||||||
<div class="tab-pane" title="{{ .Get 0 }}">
|
<div class="tab-pane" title="{{ .Get 0 }}">
|
||||||
{{ .Inner }}
|
{{ .Inner }}
|
||||||
</div>
|
</div>
|
|
@ -1,4 +1,6 @@
|
||||||
<div class='code-tabs'>
|
{{ $_hugo_config := `{ "version": 1 }` }}
|
||||||
|
|
||||||
|
<div class="code-tabs">
|
||||||
<ul class="nav nav-tabs"></ul>
|
<ul class="nav nav-tabs"></ul>
|
||||||
<div class="tab-content">{{ .Inner }}</div>
|
<div class="tab-content">{{ .Inner }}</div>
|
||||||
</div>
|
</div>
|
Loading…
Add table
Reference in a new issue