Skip to content

Commit

Permalink
docs: update template
Browse files Browse the repository at this point in the history
  • Loading branch information
OlenaPostindustria committed Feb 21, 2025
1 parent 241b343 commit 2119c4f
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions _includes/code/gma-versions-tabs.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
<ul class="nav nav-tabs" role="tablist">
<!-- GMA SDK v11 Tab -->
<li class="nav-item ui-tab" role="presentation">
<button class="nav-link active" id="gma11-tab" data-toggle="tab" data-target="#gma11" type="button" role="tab" aria-controls="gma11" aria-selected="true">GMA SDK v11</button>
<button class="nav-link active" id="{{ include.id }}-gma11-tab" data-toggle="tab" data-target="#{{ include.id }}-gma11" type="button" role="tab" aria-controls="gma11" aria-selected="true">GMA SDK v11</button>
</li>
<!-- GMA SDK v12 Tab -->
<li class="nav-item ui-tab" role="presentation">
<button class="nav-link" id="gma12-tab" data-toggle="tab" data-target="#gma12" type="button" role="tab" aria-controls="gma12" aria-selected="false">GMA SDK v12</button>
<button class="nav-link" id="{{ include.id }}-gma12-tab" data-toggle="tab" data-target="#{{ include.id }}-gma12" type="button" role="tab" aria-controls="gma12" aria-selected="false">GMA SDK v12</button>
</li>
</ul>

<div class="tab-content" id="gma-sdk-tab-content">
<!-- GMA SDK v11 Content -->
<div class="tab-pane fade show active" id="gma11" role="tabpanel" aria-labelledby="gma11-tab">
<div class="tab-pane fade show active" id="{{ include.id }}-gma11" role="tabpanel" aria-labelledby="{{ include.id }}-gma11-tab">
<div class="highlight">
<pre class="highlight language-swift"><code class="language-swift">{{ include.gma11.content | xml_escape }}</code></pre>
<pre class="highlight"><code>{{ include.gma11 | xml_escape }}</code></pre>
</div>
</div>

<!-- GMA SDK v12 Content -->
<div class="tab-pane fade" id="gma12" role="tabpanel" aria-labelledby="gma12-tab">
<div class="tab-pane fade" id="{{ include.id }}-gma12" role="tabpanel" aria-labelledby="{{ include.id }}-gma12-tab">
<div class="highlight">
<pre class="highlight language-swift"><code class="language-swift">{{ include.gma12.content | xml_escape }}</code></pre>
<pre class="highlight language-swift"><code class="language-swift">{{ include.gma12 | xml_escape }}</code></pre>
</div>
</div>
</div>
</div>

0 comments on commit 2119c4f

Please sign in to comment.