fixing invalid syntax in links to reduce errors
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
<script language="JavaScript" type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
if (top.location == location) {
|
if (top.location == location) {
|
||||||
|
@ -42,8 +42,8 @@
|
|||||||
|
|
||||||
<ul id="mysidebar" class="nav">
|
<ul id="mysidebar" class="nav">
|
||||||
|
|
||||||
<div class="siteTagline">{{site.sidebar_tagline}}</div>
|
<span class="siteTagline">{{site.sidebar_tagline}}</span>
|
||||||
<div class="versionTagline">{{site.sidebar_version}}</div>
|
<span class="versionTagline">{{site.sidebar_version}}</span>
|
||||||
|
|
||||||
{% for entry in sidebar %}
|
{% for entry in sidebar %}
|
||||||
{% for subcategory in entry.subcategories %}
|
{% for subcategory in entry.subcategories %}
|
||||||
@ -80,11 +80,10 @@
|
|||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</li>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if subcategory.class == "series" %}</ul>{% else %}</ul>{% endif %}
|
</ul> </li>
|
||||||
</li>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
|
<nav class="navbar navbar-inverse navbar-fixed-top">
|
||||||
<div class="container topnavlinks">
|
<div class="container topnavlinks">
|
||||||
<div class="navbar-header">
|
<div class="navbar-header">
|
||||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
||||||
@ -91,6 +91,9 @@
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
{% include frameescape.html %}
|
{% include frameescape.html %}
|
||||||
</div>
|
|
||||||
<!-- /.container -->
|
<!-- /.container -->
|
||||||
</nav>
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div></nav>
|
@ -1,5 +1,4 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
@ -233,6 +233,7 @@ $('#small-box-links').localScroll({
|
|||||||
</div> <!-- end small-box-links -->
|
</div> <!-- end small-box-links -->
|
||||||
</div> <!-- end row -->
|
</div> <!-- end row -->
|
||||||
</div> <!-- end container -->
|
</div> <!-- end container -->
|
||||||
|
</div>
|
||||||
|
|
||||||
{{site.data.alerts.note}} This was mostly an experiment to see if there was a better way to document a long JSON code example. I haven't actually used this approach in my own documentation.{{site.data.alerts.end}}
|
{{site.data.alerts.note}} This was mostly an experiment to see if there was a better way to document a long JSON code example. I haven't actually used this approach in my own documentation.{{site.data.alerts.end}}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user