pmd/docs/_layouts/default.html

36 lines
977 B
HTML
Raw Normal View History

2016-09-07 16:10:48 -04:00
<!DOCTYPE html>
<html>
2016-09-07 16:10:48 -04:00
<head>
{% include head.html %}
</head>
<body>
<!-- Content is offset by the height of the topnav bar. -->
<!-- There's already a padding-top rule in modern-business.css, but it apparently doesn't work on Firefox 60 and Chrome 67 -->
<div id="topbar-content-offset">
2016-09-07 16:10:48 -04:00
{% include topnav.html %}
<!-- Page Content -->
<div class="container">
<div class="col-lg-12">&nbsp;</div>
<!-- Content Row -->
<div class="row">
{% assign content_col_size = "col-md-12" %}
{% unless page.hide_sidebar %}
<!-- Sidebar Column -->
<div class="col-md-3" id="tg-sb-sidebar">
{% include sidebar.html %}
</div>
{% assign content_col_size = "col-md-9" %}
{% endunless %}
2016-09-07 16:10:48 -04:00
<!-- Content Column -->
<div class="{{content_col_size}}" id="tg-sb-content">
{{content}}
</div>
<!-- /.row -->
2016-09-07 16:10:48 -04:00
</div>
<!-- /.container -->
</div>
</div>
2016-09-07 16:10:48 -04:00
</body>
</html>