-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
88 lines (80 loc) · 3.65 KB
/
index.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{{ define "main" }}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function () {
GetLatestReleaseInfo();
});
function GetLatestReleaseInfo() {
$.getJSON("https://api.github.com/repos/trimble-oss/dba-dash/tags").done(function (json) {
var release = json[0];
var downloadURL = "https://github.com/trimble-oss/dba-dash/releases/download/" + release.name + "/DBADash_" + release.name + ".zip";
var downloadGUIURL = "https://github.com/trimble-oss/dba-dash/releases/download/" + release.name + "/DBADash_GUI_Only_" + release.name + ".zip";
$("#full-download").attr("href", downloadURL);
$("#gui-download").attr("href", downloadGUIURL);
document.getElementById('github-version').innerHTML = "Latest Version " + release.name
});
}
</script>
<section class="section container-fluid mt-n3 pb-3">
<div class="row justify-content-center">
<div class="col-lg-12 text-center">
<h1 class="mt-0">{{ .Title }}</h1>
</div>
<div class="col-lg-9 col-xl-8 text-center">
<p class="lead">{{ .Params.lead | safeHTML }}</p>
<a class="btn btn-primary btn-lg px-4 mb-2" title="Quick start guide to setup DBA Dash" href="/docs/{{ if .Site.Params.options.docsVersioning }}{{ .Site.Params.docsVersion }}/{{ end }}setup/quick-start/" role="button">Get Started</a>
<br/>
<p class="meta">Open-source MIT Licensed. <a id="github-version" href="https://github.com/trimble-oss/dba-dash/releases"></a>
</p>
<br/>
<a id='full-download' class="btn btn-primary btn-lg px-4 mb-2" href="" title="Download latest version of DBA Dash" role="button">Download (Full)</a>
<a id='gui-download' class="btn btn-primary btn-lg px-4 mb-2" href="" title="Download GUI only for deployment to clients" role="button">Download (GUI)</a>
</div>
</div>
</section>
{{ end }}
{{ define "sidebar-prefooter" }}
<section class="section section-sm">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-5">
<img src="docs/images/DBADash_Performance_thumb.png" />
</div>
<div class="col-lg-5">
<img src="docs/images/DBADash_Summary_thumb.png" />
</div>
<div class="col-lg-5">
<img src="docs/images/DBADash_Hardware_thumb.png" />
</div>
</div>
<div class="row justify-content-center text-center">
<div class="col-lg-5">
<h2 class="h4">Performance Monitoring</h2>
<p>Monitor CPU, IO, blocking, running queries, slow queries, stored procedures, performance counters, memory & more.</p>
</div>
<div class="col-lg-5">
<h2 class="h4">Daily DBA Checks</h2>
<p>Check backups, corruption, memory dumps, DBCC, availability groups, log shipping, mirroring, agent jobs, disk space, query store, identity columns & more.</p>
</div>
<div class="col-lg-5">
<h2 class="h4">Configuration</h2>
<p>Check configuration settings, trace flags, hardware, patching & tempdb across all servers. Automatically track when changes occur. </p>
</div>
</div>
<br/>
</div>
<br/>
<div class="row justify-content-center text-center">
<a class="github-button" href="https://github.com/trimble-oss/dba-dash" data-size="large" data-show-count="true" aria-label="Star trimble-oss/dba-dash on GitHub">Star</a>
</div>
</section>
{{ end }}
{{ define "sidebar-footer" }}
<section class="section section-sm container-fluid">
<div class="row justify-content-center text-center">
<div class="col-lg-9">
{{- .Content -}}
</div>
</div>
</section>
{{ end }}