forked from iluwatar/java-design-patterns
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault.html
More file actions
37 lines (30 loc) · 732 Bytes
/
default.html
File metadata and controls
37 lines (30 loc) · 732 Bytes
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
---
layout: compress
---
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include header.html %}
<div id="main" class="container main">
{{ content }}
</div>
<div id="top" data-toggle="tooltip" data-placement="left" title="Go to Top">
<a href="javascript:;">
<div class="arrow"></div>
<div class="stick"></div>
</a>
</div>
{% include footer.html %}
<script type="text/javascript">
function addBlankTargetForLinks () {
$('a[href^="http"]').each(function(){
$(this).attr('target', '_blank');
});
}
$(document).bind('DOMNodeInserted', function(event) {
addBlankTargetForLinks();
});
</script>
</body>
</html>