forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
57 lines (50 loc) · 2.46 KB
/
default.html
File metadata and controls
57 lines (50 loc) · 2.46 KB
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
<!doctype html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
{% seo %}
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
<style>
a:hover {
color: #000;
font-weight: normal;
text-decoration: underline;
}
</style>
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body style="margin: 0px; padding: 0px">
<!-- content for sticky-footer -->
<div style="min-height: calc(100vh - 45px);">
<!-- header box -->
<div style="width: 100%; height: 40px; background-color: #fafbfc; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #e1e4e8;">
<div style="max-width: 800px; margin: auto; padding-left: 30px; padding-right: 30px; position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);">
<h3><a href="https://github.com/Microsoft/web-build-tools/wiki">web-build-tools</a> API reference</h3>
</div>
</div>
<!-- page body -->
<div style="max-width: 800px; margin: auto; padding-left: 30px; padding-right: 30px; padding-top: 50px; padding-bottom: 50px">
{{ content }}
</div>
</div>
<!-- sticky-footer (height is 45px minus 1px border) -->
<div style="max-width: 800px; margin: auto; padding-left: 30px; padding-right: 30px; height: 44px; border-top-width: 1px; border-top-style: solid; border-top-color: #e1e4e8;">
<i>Copyright © Microsoft Corporation. All rights reserved.</i>
</div>
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
{% if site.google_analytics %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview');
</script>
{% endif %}
</body>
</html>