66 строки
2.0 KiB
HTML
66 строки
2.0 KiB
HTML
---
|
|
layout: default
|
|
---
|
|
<div class="row">
|
|
{% unless page.toc == false %}
|
|
<div class="col-md-2 col-xs-12 content-right pull-right">
|
|
{% include toc.html %}
|
|
</div>
|
|
{% endunless %}
|
|
|
|
<div class="col-md-10 col-xs-12 content-center pull-left">
|
|
<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">
|
|
{% if page.summary %}
|
|
<div class="summary">{{page.summary}}</div>
|
|
{% endif %}
|
|
|
|
{% if site.github_editme_path %}
|
|
|
|
<a target="_blank" rel="noopener" href="https://github.com/{{site.github_editme_path}}{{page.path}}" class="btn btn-default githubEditButton" role="button"><i class="fa fa-github 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="{{ "tag_" | 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>
|
|
</div>
|
|
</div> |