gouy 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +47 -0
- data/_includes/archive.html +15 -0
- data/_includes/callout.html +1 -0
- data/_includes/custom/getting_started_series.html +19 -0
- data/_includes/custom/getting_started_series_next.html +10 -0
- data/_includes/custom/series_acme.html +19 -0
- data/_includes/custom/series_acme_next.html +30 -0
- data/_includes/custom/usermap.html +14 -0
- data/_includes/custom/usermapcomplex.html +91 -0
- data/_includes/disqus.html +25 -0
- data/_includes/feedback.html +13 -0
- data/_includes/footer.html +9 -0
- data/_includes/google_analytics.html +6 -0
- data/_includes/head.html +39 -0
- data/_includes/head_print.html +28 -0
- data/_includes/image.html +1 -0
- data/_includes/important.html +1 -0
- data/_includes/initialize_shuffle.html +130 -0
- data/_includes/inline_image.html +1 -0
- data/_includes/links.html +44 -0
- data/_includes/note.html +1 -0
- data/_includes/sidebar.html +58 -0
- data/_includes/taglogic.html +32 -0
- data/_includes/tip.html +1 -0
- data/_includes/toc.html +21 -0
- data/_includes/topnav.html +81 -0
- data/_includes/warning.html +1 -0
- data/_layouts/default.html +126 -0
- data/_layouts/default_print.html +25 -0
- data/_layouts/none.html +3 -0
- data/_layouts/page.html +68 -0
- data/_layouts/page_print.html +15 -0
- data/_layouts/post.html +39 -0
- data/licenses/LICENSE +21 -0
- data/licenses/LICENSE-BSD-NAVGOCO.txt +27 -0
- metadata +122 -0
@@ -0,0 +1 @@
|
|
1
|
+
<img class="inline" src="images/{{include.file}}" alt="{{include.alt}}" />
|
@@ -0,0 +1,44 @@
|
|
1
|
+
{% comment %}Get links from each sidebar, as listed in the _config.yml file under sidebars{% endcomment %}
|
2
|
+
|
3
|
+
{% for sidebar in site.sidebars %}
|
4
|
+
{% for entry in site.data.sidebars[sidebar].entries %}
|
5
|
+
{% for folder in entry.folders %}
|
6
|
+
{% for folderitem in folder.folderitems %}
|
7
|
+
{% if folderitem.url contains "html#" %}
|
8
|
+
[{{folderitem.url | remove: "/" }}]: {{folderitem.url | remove: "/"}}
|
9
|
+
{% else %}
|
10
|
+
[{{folderitem.url | remove: "/" | remove: ".html"}}]: {{folderitem.url | remove: "/"}}
|
11
|
+
{% endif %}
|
12
|
+
{% for subfolders in folderitem.subfolders %}
|
13
|
+
{% for subfolderitem in subfolders.subfolderitems %}
|
14
|
+
[{{subfolderitem.url | remove: "/" | remove: ".html"}}]: {{subfolderitem.url | remove: "/"}}
|
15
|
+
{% endfor %}
|
16
|
+
{% endfor %}
|
17
|
+
{% endfor %}
|
18
|
+
{% endfor %}
|
19
|
+
{% endfor %}
|
20
|
+
{% endfor %}
|
21
|
+
|
22
|
+
|
23
|
+
{% comment %} Get links from topnav {% endcomment %}
|
24
|
+
|
25
|
+
{% for entry in site.data.topnav.topnav %}
|
26
|
+
{% for item in entry.items %}
|
27
|
+
{% if item.external_url == null %}
|
28
|
+
[{{item.url | remove: "/" | remove: ".html"}}]: {{item.url | remove: "/"}}
|
29
|
+
{% endif %}
|
30
|
+
{% endfor %}
|
31
|
+
{% endfor %}
|
32
|
+
|
33
|
+
{% comment %}Get links from topnav dropdowns {% endcomment %}
|
34
|
+
|
35
|
+
{% for entry in site.data.topnav.topnav_dropdowns %}
|
36
|
+
{% for folder in entry.folders %}
|
37
|
+
{% for folderitem in folder.folderitems %}
|
38
|
+
{% if folderitem.external_url == null %}
|
39
|
+
[{{folderitem.url | remove: "/" | remove: ".html"}}]: {{folderitem.url | remove: "/"}}
|
40
|
+
{% endif %}
|
41
|
+
{% endfor %}
|
42
|
+
{% endfor %}
|
43
|
+
{% endfor %}
|
44
|
+
|
data/_includes/note.html
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
<div markdown="span" class="alert alert-info" role="alert"><i class="fa fa-info-circle"></i> <b>Note:</b> {{include.content}}</div>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
{% assign sidebar = site.data.sidebars[page.sidebar].entries %}
|
2
|
+
|
3
|
+
<ul id="mysidebar" class="nav">
|
4
|
+
<li class="sidebarTitle">{{sidebar[0].product}} {{sidebar[0].version}}</li>
|
5
|
+
{% for entry in sidebar %}
|
6
|
+
{% for folder in entry.folders %}
|
7
|
+
{% if folder.output contains "web" %}
|
8
|
+
<li>
|
9
|
+
<a href="#">{{ folder.title }}</a>
|
10
|
+
<ul>
|
11
|
+
{% for folderitem in folder.folderitems %}
|
12
|
+
{% if folderitem.output contains "web" %}
|
13
|
+
{% if folderitem.external_url %}
|
14
|
+
<li><a href="{{folderitem.external_url}}" target="_blank">{{folderitem.title}}</a></li>
|
15
|
+
{% elsif page.url == folderitem.url %}
|
16
|
+
<li class="active"><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
|
17
|
+
{% elsif folderitem.type == "empty" %}
|
18
|
+
<li><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
|
19
|
+
|
20
|
+
{% else %}
|
21
|
+
<li><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
|
22
|
+
{% endif %}
|
23
|
+
{% for subfolders in folderitem.subfolders %}
|
24
|
+
{% if subfolders.output contains "web" %}
|
25
|
+
<li class="subfolders">
|
26
|
+
<a href="#">{{ subfolders.title }}</a>
|
27
|
+
<ul>
|
28
|
+
{% for subfolderitem in subfolders.subfolderitems %}
|
29
|
+
{% if subfolderitem.output contains "web" %}
|
30
|
+
{% if subfolderitem.external_url %}
|
31
|
+
<li><a href="{{subfolderitem.external_url}}" target="_blank">{{subfolderitem.title}}</a></li>
|
32
|
+
{% elsif page.url == subfolderitem.url %}
|
33
|
+
<li class="active"><a href="{{subfolderitem.url | remove: "/"}}">{{subfolderitem.title}}</a></li>
|
34
|
+
{% else %}
|
35
|
+
<li><a href="{{subfolderitem.url | remove: "/"}}">{{subfolderitem.title}}</a></li>
|
36
|
+
{% endif %}
|
37
|
+
{% endif %}
|
38
|
+
{% endfor %}
|
39
|
+
</ul>
|
40
|
+
</li>
|
41
|
+
{% endif %}
|
42
|
+
{% endfor %}
|
43
|
+
{% endif %}
|
44
|
+
{% endfor %}
|
45
|
+
</ul>
|
46
|
+
</li>
|
47
|
+
{% endif %}
|
48
|
+
{% endfor %}
|
49
|
+
{% endfor %}
|
50
|
+
<!-- if you aren't using the accordion, uncomment this block:
|
51
|
+
<p class="external">
|
52
|
+
<a href="#" id="collapseAll">Collapse All</a> | <a href="#" id="expandAll">Expand All</a>
|
53
|
+
</p>
|
54
|
+
-->
|
55
|
+
</ul>
|
56
|
+
|
57
|
+
<!-- this highlights the active parent class in the navgoco sidebar. this is critical so that the parent expands when you're viewing a page. This must appear below the sidebar code above. Otherwise, if placed inside customscripts.js, the script runs before the sidebar code runs and the class never gets inserted.-->
|
58
|
+
<script>$("li.active").parents('li').toggleClass("active");</script>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<p>The following pages and posts are tagged with <button type="button" style="cursor: default" class="btn btn-default navbar-btn">{{page.tagName}}</button></p>
|
2
|
+
<table><thead><tr><th>Title</th><th>Type</th><th>Excerpt</th></tr></thead>
|
3
|
+
<tbody>
|
4
|
+
{% assign thisTag = page.tagName %}
|
5
|
+
{% for page in site.pages %}
|
6
|
+
{% for tag in page.tags %}
|
7
|
+
{% if tag == thisTag %}
|
8
|
+
|
9
|
+
<tr><td><a href="{{ page.url | remove: "/" }}">{{page.title}}</a></td>
|
10
|
+
<td><span class="label label-default">Page</span></td>
|
11
|
+
<td>{% if page.summary %} {{ page.summary | strip_html | strip_newlines | truncate: 160 }} {% else %} {{ page.content | truncatewords: 50 | strip_html }} {% endif %}</td>
|
12
|
+
</tr>
|
13
|
+
{% endif %}
|
14
|
+
{% endfor %}
|
15
|
+
{% endfor %}
|
16
|
+
|
17
|
+
{% assign thisTag = page.tagName %}
|
18
|
+
{% for post in site.posts %}
|
19
|
+
{% for tag in post.tags %}
|
20
|
+
{% if tag == thisTag %}
|
21
|
+
|
22
|
+
<tr><td><a href="{{ post.url | remove: "/" }}">{{post.title}}</a></td>
|
23
|
+
<td><span class="label label-primary">Post</span></td>
|
24
|
+
<td>{% if post.summary %} {{ post.summary | strip_html | strip_newlines | truncate: 160 }} {% else %} {{ post.content | truncatewords: 50 | strip_html }} {% endif %}</td>
|
25
|
+
</tr>
|
26
|
+
{% endif %}
|
27
|
+
{% endfor %}
|
28
|
+
{% endfor %}
|
29
|
+
|
30
|
+
</tbody>
|
31
|
+
</table>
|
32
|
+
|
data/_includes/tip.html
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
<div markdown="span" class="alert alert-success" role="alert"><i class="fa fa-check-square-o"></i> <b>Tip:</b> {{include.content}}</div>
|
data/_includes/toc.html
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
|
2
|
+
<!-- this handles the automatic toc. use ## for subheads to auto-generate the on-page minitoc. if you use html tags, you must supply an ID for the heading element in order for it to appear in the minitoc. -->
|
3
|
+
<script>
|
4
|
+
$( document ).ready(function() {
|
5
|
+
// Handler for .ready() called.
|
6
|
+
|
7
|
+
$('#toc').toc({ minimumHeaders: 0, listType: 'ul', showSpeed: 0, headers: 'h2,h3,h4' });
|
8
|
+
|
9
|
+
/* this offset helps account for the space taken up by the floating toolbar. */
|
10
|
+
$('#toc').on('click', 'a', function() {
|
11
|
+
var target = $(this.getAttribute('href'))
|
12
|
+
, scroll_target = target.offset().top
|
13
|
+
|
14
|
+
$(window).scrollTop(scroll_target - 10);
|
15
|
+
return false
|
16
|
+
})
|
17
|
+
|
18
|
+
});
|
19
|
+
</script>
|
20
|
+
|
21
|
+
<div id="toc"></div>
|
@@ -0,0 +1,81 @@
|
|
1
|
+
<!-- Navigation -->
|
2
|
+
<nav class="navbar navbar-inverse navbar-static-top">
|
3
|
+
<div class="container topnavlinks">
|
4
|
+
<div class="navbar-header">
|
5
|
+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
6
|
+
<span class="sr-only">Toggle navigation</span>
|
7
|
+
<span class="icon-bar"></span>
|
8
|
+
<span class="icon-bar"></span>
|
9
|
+
<span class="icon-bar"></span>
|
10
|
+
</button>
|
11
|
+
<a class="fa fa-home fa-lg navbar-brand" href="index.html"> <span class="projectTitle"> {{site.topnav_title}}</span></a>
|
12
|
+
</div>
|
13
|
+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
14
|
+
<ul class="nav navbar-nav navbar-right">
|
15
|
+
<!-- toggle sidebar button -->
|
16
|
+
<li><a id="tg-sb-link" href="#"><i id="tg-sb-icon" class="fa fa-toggle-on"></i> Nav</a></li>
|
17
|
+
<!-- entries without drop-downs appear here -->
|
18
|
+
|
19
|
+
{% assign topnav = site.data[page.topnav] %}
|
20
|
+
{% assign topnav_dropdowns = site.data[page.topnav].topnav_dropdowns %}
|
21
|
+
|
22
|
+
{% for entry in topnav.topnav %}
|
23
|
+
{% for item in entry.items %}
|
24
|
+
{% if item.external_url %}
|
25
|
+
<li><a href="{{item.external_url}}" target="_blank">{{item.title}}</a></li>
|
26
|
+
{% elsif page.url contains item.url %}
|
27
|
+
<li class="active"><a href="{{item.url | remove: "/"}}">{{item.title}}</a></li>
|
28
|
+
{% else %}
|
29
|
+
<li><a href="{{item.url | remove: "/"}}">{{item.title}}</a></li>
|
30
|
+
{% endif %}
|
31
|
+
{% endfor %}
|
32
|
+
{% endfor %}
|
33
|
+
<!-- entries with drop-downs appear here -->
|
34
|
+
<!-- conditional logic to control which topnav appears for the audience defined in the configuration file.-->
|
35
|
+
{% for entry in topnav_dropdowns %}
|
36
|
+
{% for folder in entry.folders %}
|
37
|
+
<li class="dropdown">
|
38
|
+
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ folder.title }}<b class="caret"></b></a>
|
39
|
+
<ul class="dropdown-menu">
|
40
|
+
{% for folderitem in folder.folderitems %}
|
41
|
+
{% if folderitem.external_url %}
|
42
|
+
<li><a href="{{folderitem.external_url}}" target="_blank">{{folderitem.title}}</a></li>
|
43
|
+
{% elsif page.url contains folderitem.url %}
|
44
|
+
<li class="dropdownActive"><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
|
45
|
+
{% else %}
|
46
|
+
<li><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
|
47
|
+
{% endif %}
|
48
|
+
{% endfor %}
|
49
|
+
</ul>
|
50
|
+
</li>
|
51
|
+
{% endfor %}
|
52
|
+
{% endfor %}
|
53
|
+
{% if site.feedback_disable == null or site.feedback_disable == false %}
|
54
|
+
{% include feedback.html %}
|
55
|
+
{% endif %}
|
56
|
+
<!--comment out this block if you want to hide search-->
|
57
|
+
<li>
|
58
|
+
<!--start search-->
|
59
|
+
<div id="search-demo-container">
|
60
|
+
<input type="text" id="search-input" placeholder="{{site.data.strings.search_placeholder_text}}">
|
61
|
+
<ul id="results-container"></ul>
|
62
|
+
</div>
|
63
|
+
<script src="{{ "js/jekyll-search.js"}}" type="text/javascript"></script>
|
64
|
+
<script type="text/javascript">
|
65
|
+
SimpleJekyllSearch.init({
|
66
|
+
searchInput: document.getElementById('search-input'),
|
67
|
+
resultsContainer: document.getElementById('results-container'),
|
68
|
+
dataSource: '{{ "search.json" }}',
|
69
|
+
searchResultTemplate: '<li><a href="{url}" title="{{page.title | replace: "\'", "\"}}">{title}</a></li>',
|
70
|
+
noResultsText: '{{site.data.strings.search_no_results_text}}',
|
71
|
+
limit: 10,
|
72
|
+
fuzzy: true,
|
73
|
+
})
|
74
|
+
</script>
|
75
|
+
<!--end search-->
|
76
|
+
</li>
|
77
|
+
</ul>
|
78
|
+
</div>
|
79
|
+
</div>
|
80
|
+
<!-- /.container -->
|
81
|
+
</nav>
|
@@ -0,0 +1 @@
|
|
1
|
+
<div markdown="span" class="alert alert-danger" role="alert"><i class="fa fa-exclamation-circle"></i> <b>Warning:</b> {{include.content}}</div>
|
@@ -0,0 +1,126 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
{% include head.html %}
|
5
|
+
<script>
|
6
|
+
$(document).ready(function() {
|
7
|
+
// Initialize navgoco with default options
|
8
|
+
$("#mysidebar").navgoco({
|
9
|
+
caretHtml: '',
|
10
|
+
accordion: true,
|
11
|
+
openClass: 'active', // open
|
12
|
+
save: false, // leave false or nav highlighting doesn't work right
|
13
|
+
cookie: {
|
14
|
+
name: 'navgoco',
|
15
|
+
expires: false,
|
16
|
+
path: '/'
|
17
|
+
},
|
18
|
+
slide: {
|
19
|
+
duration: 400,
|
20
|
+
easing: 'swing'
|
21
|
+
}
|
22
|
+
});
|
23
|
+
|
24
|
+
$("#collapseAll").click(function(e) {
|
25
|
+
e.preventDefault();
|
26
|
+
$("#mysidebar").navgoco('toggle', false);
|
27
|
+
});
|
28
|
+
|
29
|
+
$("#expandAll").click(function(e) {
|
30
|
+
e.preventDefault();
|
31
|
+
$("#mysidebar").navgoco('toggle', true);
|
32
|
+
});
|
33
|
+
|
34
|
+
});
|
35
|
+
|
36
|
+
</script>
|
37
|
+
<script>
|
38
|
+
$(function () {
|
39
|
+
$('[data-toggle="tooltip"]').tooltip()
|
40
|
+
})
|
41
|
+
</script>
|
42
|
+
<script>
|
43
|
+
$(document).ready(function() {
|
44
|
+
$("#tg-sb-link").click(function() {
|
45
|
+
$("#tg-sb-sidebar").toggle();
|
46
|
+
$("#tg-sb-content").toggleClass('col-md-9');
|
47
|
+
$("#tg-sb-content").toggleClass('col-md-12');
|
48
|
+
$("#tg-sb-icon").toggleClass('fa-toggle-on');
|
49
|
+
$("#tg-sb-icon").toggleClass('fa-toggle-off');
|
50
|
+
});
|
51
|
+
});
|
52
|
+
</script>
|
53
|
+
{% if page.datatable == true %}
|
54
|
+
<!-- Include the standard DataTables bits -->
|
55
|
+
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.13/css/jquery.dataTables.css">
|
56
|
+
<script type="text/javascript" charset="utf8" src="//cdn.datatables.net/1.10.13/js/jquery.dataTables.js"></script>
|
57
|
+
<!-- First, this walks through the tables that occur between ...-begin
|
58
|
+
and ...-end and add the "datatable" class to them.
|
59
|
+
Then it invokes DataTable's standard initializer
|
60
|
+
Credit here: http://www.beardedhacker.com/blog/2015/08/28/add-class-attribute-to-markdown-table/
|
61
|
+
-->
|
62
|
+
<script>
|
63
|
+
$(document).ready(function(){
|
64
|
+
$('div.datatable-begin').nextUntil('div.datatable-end', 'table').addClass('display');
|
65
|
+
$('table.display').DataTable( {
|
66
|
+
paging: true,
|
67
|
+
stateSave: true,
|
68
|
+
searching: true
|
69
|
+
});
|
70
|
+
});
|
71
|
+
</script>
|
72
|
+
{% endif %}
|
73
|
+
|
74
|
+
</head>
|
75
|
+
<body>
|
76
|
+
{% include topnav.html %}
|
77
|
+
<!-- Page Content -->
|
78
|
+
<div class="container">
|
79
|
+
<div id="main">
|
80
|
+
<!-- Content Row -->
|
81
|
+
<div class="row">
|
82
|
+
{% assign content_col_size = "col-md-12" %}
|
83
|
+
{% unless page.hide_sidebar %}
|
84
|
+
<!-- Sidebar Column -->
|
85
|
+
<div class="col-md-3" id="tg-sb-sidebar">
|
86
|
+
{% include sidebar.html %}
|
87
|
+
</div>
|
88
|
+
{% assign content_col_size = "col-md-9" %}
|
89
|
+
{% endunless %}
|
90
|
+
|
91
|
+
<!-- Content Column -->
|
92
|
+
<div class="{{content_col_size}}" id="tg-sb-content">
|
93
|
+
{{content}}
|
94
|
+
</div>
|
95
|
+
<!-- /.row -->
|
96
|
+
</div>
|
97
|
+
<!-- /.container -->
|
98
|
+
</div>
|
99
|
+
<!-- /#main -->
|
100
|
+
</div>
|
101
|
+
<div id="disqus_thread"></div>
|
102
|
+
<script>
|
103
|
+
|
104
|
+
/**
|
105
|
+
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
|
106
|
+
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
|
107
|
+
/*
|
108
|
+
var disqus_config = function () {
|
109
|
+
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
|
110
|
+
this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
|
111
|
+
};
|
112
|
+
*/
|
113
|
+
(function() { // DON'T EDIT BELOW THIS LINE
|
114
|
+
var d = document, s = d.createElement('script');
|
115
|
+
s.src = 'https://afroware.disqus.com/embed.js';
|
116
|
+
s.setAttribute('data-timestamp', +new Date());
|
117
|
+
(d.head || d.body).appendChild(s);
|
118
|
+
})();
|
119
|
+
</script>
|
120
|
+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
121
|
+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ '../feed.xml' | prepend: site.url }}">
|
122
|
+
</body>
|
123
|
+
{% if site.google_analytics %}
|
124
|
+
{% include google_analytics.html %}
|
125
|
+
{% endif %}
|
126
|
+
</html>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
{% include head_print.html %}
|
6
|
+
|
7
|
+
|
8
|
+
</head>
|
9
|
+
|
10
|
+
<body class="{% if page.type == "title"%}title{% elsif page.type == "frontmatter" %}frontmatter{% elsif page.type == "first_page" %}first_page{% endif %} print">
|
11
|
+
|
12
|
+
<!-- Page Content -->
|
13
|
+
<div class="container">
|
14
|
+
<!-- Content Column -->
|
15
|
+
<div class="col-md-9">
|
16
|
+
|
17
|
+
{{content}}
|
18
|
+
</div>
|
19
|
+
|
20
|
+
</div> <!-- /.container -->
|
21
|
+
|
22
|
+
</body>
|
23
|
+
|
24
|
+
</html>
|
25
|
+
|
data/_layouts/none.html
ADDED
data/_layouts/page.html
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<div class="post-header">
|
6
|
+
<h1 class="post-title-main">{{ page.title }}</h1>
|
7
|
+
</div>
|
8
|
+
|
9
|
+
{% if page.simple_map == true %}
|
10
|
+
|
11
|
+
<script>
|
12
|
+
$(document).ready ( function(){
|
13
|
+
$('.box{{page.box_number}}').addClass('active');
|
14
|
+
});
|
15
|
+
</script>
|
16
|
+
|
17
|
+
{% include custom/{{page.map_name}}.html %}
|
18
|
+
|
19
|
+
{% elsif page.complex_map == true %}
|
20
|
+
|
21
|
+
<script>
|
22
|
+
$(document).ready ( function(){
|
23
|
+
$('.modalButton{{page.box_number}}').addClass('active');
|
24
|
+
});
|
25
|
+
</script>
|
26
|
+
|
27
|
+
{% include custom/{{page.map_name}}.html %}
|
28
|
+
|
29
|
+
{% endif %}
|
30
|
+
|
31
|
+
<div class="post-content">
|
32
|
+
|
33
|
+
{% if page.summary %}
|
34
|
+
<div class="summary">{{page.summary}}</div>
|
35
|
+
{% endif %}
|
36
|
+
|
37
|
+
{% unless page.toc == false %}
|
38
|
+
{% include toc.html %}
|
39
|
+
{% endunless %}
|
40
|
+
|
41
|
+
|
42
|
+
{% if site.github_editme_path %}
|
43
|
+
|
44
|
+
<a target="_blank" href="https://github.com/{{site.github_editme_path}}{% unless page.url contains "index.html" %}pages/{% endunless %}{{page.folder}}{{page.url | remove: ".html" | append: ".md"}}" class="btn btn-default githubEditButton" role="button"><i class="fa fa-github fa-lg"></i> Edit me</a>
|
45
|
+
|
46
|
+
{% endif %}
|
47
|
+
|
48
|
+
{{content}}
|
49
|
+
|
50
|
+
<div class="tags">
|
51
|
+
{% if page.tags != null %}
|
52
|
+
<b>Tags: </b>
|
53
|
+
{% assign projectTags = site.data.tags.allowed-tags %}
|
54
|
+
{% for tag in page.tags %}
|
55
|
+
{% if projectTags contains tag %}
|
56
|
+
<a href="{{ "tag_" | append: tag | append: ".html" }}" class="btn btn-default navbar-btn cursorNorm" role="button">{{page.tagName}}{{tag}}</a>
|
57
|
+
{% endif %}
|
58
|
+
{% endfor %}
|
59
|
+
{% endif %}
|
60
|
+
</div>
|
61
|
+
|
62
|
+
{% include disqus.html %}
|
63
|
+
|
64
|
+
</div>
|
65
|
+
|
66
|
+
{{site.data.alerts.hr_shaded}}
|
67
|
+
|
68
|
+
{% include footer.html %}
|