layout: default


<!– toggle sidebar button –> <a id=“tg-sb-link” href=“#”><i id=“tg-sb-icon-content-pane” class=“fa fa-toggle-on”></i>Sidebar</a>

<div class=“post-header”>

<h1 class="post-title-main">{{ page.title }}</h1>

</div>

{% if page.simple_map == true %}

<script>

$(document).ready ( function(){
    $('.box{{page.box_number}}').addClass('active');
});

</script>

{% include custom/{{page.map_name}}.html %}

{% elsif page.complex_map == true %}

<script>

$(document).ready ( function(){
    $('.modalButton{{page.box_number}}').addClass('active');
});

</script>

{% include custom/{{page.map_name}}.html %}

{% endif %} <div class=“post-content” unicode_script=“{{ page.unicode_script }}”

{% if page.emphasis_as_inline_comments %} emphasis_as_inline_comments
{% endif %}

>

{% if page.summary %}
 <div class="summary">{{page.summary}}</div>
{% endif %}

 {% unless page.toc == false %}
 <div id="toc_header">
     <i id="toggle-toc-icon" class="fa fa-toggle-on"></i> What's in this page? <i class="fa fa-space-shuttle"></i>
     <span style="font-size: smaller">Expand? <i id="toggle-toc-expansion-icon" class="fa fa-toggle-off"></i></a></span>
 </div>
 <div id="toc"></div>
 {% endunless %}

 {% if site.github_editme_path %}

 {% comment %}
     btn and btn-default are bootstrap classes.
 {% endcomment %}
 <a target="_blank" href="https://github.com/{{site.github_editme_path}}{{page.path}}" class="btn btn-default" role="button"><i class="fa fa-edit fa-lg"></i> Edit me</a>
 {% endif %}

 {{content}}

 <div class="tags">
     {% if page.tags != null %}
     <b>Tags: </b>
     {% assign projectTags = site.data.tags.allowed-tags %}
     {% for tag in page.tags %}
     {% if projectTags contains tag %}
     <a href="{{site.baseurl}}{{ "/tags/" | append: tag | append: ".html" }}" class="btn btn-default navbar-btn cursorNorm" role="button">{{page.tagName}}{{tag}}</a>
     {% endif %}
     {% endfor %}
     {% endif %}
 </div>

{% include disqus.html %}

</div>

{{site.data.alerts.hr_shaded}}

{% include footer.html %}