-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMasterPageFF.master
58 lines (49 loc) · 1.75 KB
/
MasterPageFF.master
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
56
57
58
<%@ Master Language="VB" CodeFile="MasterPageFF.master.vb" Inherits="MasterPageFF" %>
<!DOCTYPE html>
<!-- #include file='include/header.inc' -->
<!-- #include file="include/top-navigation.inc" -->
<body class="files study">
<a href="#content"><img src="images/skipnavimage.png" alt="Skip Navigation Link"></a>
<form id="form1" runat="server">
<div class="container">
<div class="row">
<!-- Begin Sidebar -->
<!-- #include file="include/nav-sidebar.inc" -->
<!--! end of Sidebar -->
<div class="row">
<!-- Begin Container -->
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
</div>
</div>
</form>
<!-- Bottom Paging Section -->
<!-- Begin Table of Contents Menu -->
<!-- #include file="include/toc-file.inc" -->
<!-- End of Table of Contents Menu -->
<!-- Run the plugin -->
<script type="text/javascript">
$(window).load(function() {
$(this).joyride();
});
</script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-xxxxxx-x");
pageTracker._trackPageview();
} catch (err) { }
</script>
<script type="text/javascript">
sublimevideo.ready(function() {
sublimevideo.onEnd(function(sv) {
sublimevideo.stop();
});
});
</script>
</body>
</html>