fixing site errors

This commit is contained in:
tomjohnson1492
2016-03-20 01:07:29 -07:00
parent 46e3acad63
commit 2c364675ee
4 changed files with 52 additions and 77 deletions

View File

@ -24,7 +24,7 @@
<script src="{{ "/js/toc.js" | prepend: site.baseurl }}"></script>
<script src="{{ "/js/customscripts.js" | prepend: site.baseurl }}"></script>
<link rrel="shortcut icon" href="{{ "/images/favicon.ico" | prepend: site.baseurl }}">
<link rel="shortcut icon" href="{{ "/images/favicon.ico" | prepend: site.baseurl }}">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->

View File

@ -36,14 +36,11 @@
});
</script>
<ul id="mysidebar" class="nav">
{% include custom/sidebarconfigs.html %}
<span class="siteTagline">{{sidebar[0].product}}</span>
<span class="versionTagline">{{sidebar[0].version}}</span>
<ul id="mysidebar" class="nav">
{% for entry in sidebar %}
{% for subcategory in entry.subcategories %}

View File

@ -1,5 +1,5 @@
<!-- 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="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
@ -8,14 +8,11 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="fa fa-home fa-lg navbar-brand" href="{{site.baseurl}}/">&nbsp;<span class="projectTitle"> {{site.topnav_title}}</span></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<!-- entries without drop-downs appear here -->
{% for entry in site.data.topnav.topnav %}
{% for subcategory in entry.subcategories %}
{% if subcategory.external_url %}
@ -27,12 +24,8 @@
{% endif %}
{% endfor %}
{% endfor %}
<!-- entries with drop-downs appear here -->
<!-- conditional logic to control which topnav appears for the audience defined in the configuration file.-->
{% for entry in site.data.topnav.topnav_dropdowns %}
{% for subcategory in entry.subcategories %}
<li class="dropdown">
@ -47,14 +40,11 @@
<li><a href="{{subitem.url | prepend: site.baseurl}}">{{subitem.title}}</a></li>
{% endif %}
{% endfor %}
</ul>
</li>
{% endfor %}
{% endfor %}
{% include feedback.html %}
<!--comment out this block if you want to hide search-->
<li>
<!--start search-->
@ -76,8 +66,8 @@
</script>
<!--end search-->
</li>
</ul>
</div>
</div>
<!-- /.container -->
</nav>

View File

@ -1,14 +1,11 @@
<!DOCTYPE html>
<head>
{% include head.html %}
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
{% if page.datatable == "active" %}
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.5/css/jquery.dataTables.css">
<script type="text/javascript" charset="utf8" src="//cdn.datatables.net/1.10.5/js/jquery.dataTables.js"></script>
@ -22,32 +19,23 @@
);
</script>
{% endif %}
</head>
<body>
{% include topnav.html %}
<!-- Page Content -->
<div class="container">
<div class="col-lg-12">&nbsp;</div>
{% include sidebar.html %}
<!-- Content Column -->
<div class="col-md-9">
{{content}}
</div><!-- /.row -->
</div> <!-- /.container -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</body>
{% if site.google_analytics %}
{% include google_analytics.html %}
{% endif %}
</html>