forked from microsoft/azuredevopslabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
59 lines (40 loc) · 1.61 KB
/
page.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
layout: default
---
{% 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">
<div class="pading-t-10"><a href="{{site.url }}{{site.baseurl }}/default.html">Home</a> / <span>{{ page.title }}</span></div>
<a href="https://github.com/Microsoft/azuredevopslabs/tree/master{{page.url}}"><button class="btn btn-primary btn-sm"><i class="fa fa-github"></i> Edit on GitHub</button></a>
{% if page.summary %}
<div class="summary">{{page.summary}}</div>
{% endif %}
{% if site.github_editme_path %}
<!--<a target="_blank" href="https://github.com/{{site.github_editme_path}}{% unless page.url contains "index.html" %}{% endunless %}"> <class="btn btn-default githubEditButton" role="button"><i class="fa fa-github fa-lg"></i> Edit me on GitHub</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>
</div>