fixing series demo links
This commit is contained in:
@ -9,7 +9,7 @@
|
|||||||
<li class="active"> → {{p.title}}</li>
|
<li class="active"> → {{p.title}}</li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{p.url}}">{{p.title}}</a>
|
<a href="{{p.url | remove: "/"}}">{{p.title}}</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
{% if p.series == "Getting Started" %}
|
{% if p.series == "Getting Started" %}
|
||||||
{% assign nextTopic = page.weight | plus: "1" %}
|
{% assign nextTopic = page.weight | plus: "1" %}
|
||||||
{% if p.weight == nextTopic %}
|
{% if p.weight == nextTopic %}
|
||||||
<a href="{{p.url}}"><button type="button" class="btn btn-primary">Next: {{p.title}}</button></a>
|
<a href="{{p.url | remove: "/"}}"><button type="button" class="btn btn-primary">Next: {{p.title}}</button></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<li class="active"> → {{p.weight}}. {{p.title}}</li>
|
<li class="active"> → {{p.weight}}. {{p.title}}</li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{p.url}}">{{p.weight}}. {{p.title}}</a>
|
<a href="{{p.url | remove: "/"}}">{{p.weight}}. {{p.title}}</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
{% if p.series == "ACME series" %}
|
{% if p.series == "ACME series" %}
|
||||||
{% assign nextTopic = page.weight | plus: "1" %}
|
{% assign nextTopic = page.weight | plus: "1" %}
|
||||||
{% if p.weight == nextTopic %}
|
{% if p.weight == nextTopic %}
|
||||||
<a href="{{p.url}}"><button type="button" class="btn btn-primary">Next: {{p.weight}} {{p.title}}</button></a>
|
<a href="{{p.url | remove: "/"}}"><button type="button" class="btn btn-primary">Next: {{p.weight}} {{p.title}}</button></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
1
index.md
1
index.md
@ -7,7 +7,6 @@ permalink: index.html
|
|||||||
summary: These brief instructions will help you get started quickly with the theme. The other topics in this help provide additional information and detail about working with other aspects of this theme and Jekyll.
|
summary: These brief instructions will help you get started quickly with the theme. The other topics in this help provide additional information and detail about working with other aspects of this theme and Jekyll.
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Download or clone the theme
|
## Download or clone the theme
|
||||||
|
|
||||||
First download or clone the theme from the [Github repo](https://github.com/tomjohnson1492/documentation-theme-jekyll). Most likely you won't be pulling in updates once you start customizing the theme, so downloading the theme (instead of cloning it) probably makes the most sense.
|
First download or clone the theme from the [Github repo](https://github.com/tomjohnson1492/documentation-theme-jekyll). Most likely you won't be pulling in updates once you start customizing the theme, so downloading the theme (instead of cloning it) probably makes the most sense.
|
||||||
|
@ -28,9 +28,17 @@ The following is a demo of a navtab. Refresh your page to see the tab you select
|
|||||||
<li><a class="noCrossRef" href="#match" data-toggle="tab">Match</a></li>
|
<li><a class="noCrossRef" href="#match" data-toggle="tab">Match</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
<div role="tabpanel" class="tab-pane active" id="profile">
|
<div role="tabpanel" class="tab-pane active" id="profile" markdown="1">
|
||||||
<h2>Profile</h2>
|
## Profile
|
||||||
<p>Praesent sit amet fermentum leo. Aliquam feugiat, nibh in u ltrices mattis, felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. Quisque ut condimentum massa. Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.</p>
|
|
||||||
|
Praesent sit amet fermentum leo. Aliquam feugiat,
|
||||||
|
|
||||||
|
1. nibh in u ltrices mattis
|
||||||
|
2. felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor.
|
||||||
|
* Quisque ut condimentum massa.
|
||||||
|
* ut condimentum massa.
|
||||||
|
|
||||||
|
> Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div role="tabpanel" class="tab-pane" id="about">
|
<div role="tabpanel" class="tab-pane" id="about">
|
||||||
|
@ -30,7 +30,7 @@ First create an include that contains your series button:
|
|||||||
<li class="active"> → {{p.weight}}. {{p.title}}</li>
|
<li class="active"> → {{p.weight}}. {{p.title}}</li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{p.url}}">{{p.weight}}. {{p.title}}</a>
|
<a href="{{p.url | remove: "/"}}">{{p.weight}}. {{p.title}}</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Reference in New Issue
Block a user