Skip to content

Commit 8a1d80a

Browse files
committed
Merge branch 'mainframe' into landing-revise
2 parents eff591e + 8f6a1fd commit 8a1d80a

File tree

5 files changed

+13
-23
lines changed

5 files changed

+13
-23
lines changed

layouts/catalogs/single.html

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11

22
{{ define "main" }}
33
<div class="row flex-xl-nowrap">
4-
<nav class="sidenav overflow-auto col-md-3 d-none d-xl-block d-print-none align-top">
5-
{{ partial "sidebar.html" . }}
6-
</nav>
7-
4+
85
{{ .Content }}
96

107
<!-- If there is a script defined in the page metadata, load it -->
@@ -14,4 +11,3 @@
1411
{{end }}
1512

1613
{{ end }}
17-

layouts/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{{ define "main" }}
22
{{ partial "homepage.html" . }}
3-
{{end}}
3+
{{end}}
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{{/* This shortcode **requires** that the document uses the _default/catalogs.html layout */}}
2-
<main class="content col-xl-6 d-block align-top" role="main">
2+
<main class="content col-xl-6 d-block align-top catalog" role="main">
33
<h1>NGINX Management Suite Dimensions Catalog</h1>
44
<p>Information about all of the Dimensions collected by NGINX Agent</p>
55
&nbsp;
66
{{ range .Site.Data.nms.catalogs.dimensions }}
77
<a name="{{.name}}"></a>
8-
<h2>{{.name}}<a class="headerlink float-right" href="#{{.name}}" title="{{.name}}"><i class="fas fa-link fa-xs"
9-
aria-hidden="true"></i></a></h2>
10-
<table>
8+
<h2>{{.name}}<a class="headerlink float-right" href="#{{.name}}" title="{{.name}}"></a></h2>
9+
<table class="catalog__table">
1110
<tbody>
1211
<tr>
1312
<td style="width: 200px; padding-bottom:5px">description</td>
@@ -19,6 +18,5 @@ <h2>{{.name}}<a class="headerlink float-right" href="#{{.name}}" title="{{.name}
1918
</tr>
2019
</tbody>
2120
</table>
22-
<hr>
2321
{{ end }}
2422
</main>

layouts/shortcodes/catalogs-events.html

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{{/* This shortcode **requires** that the document uses the _default/catalogs.html layout */}}
2-
<main class="content col-xl-6 d-block align-top" role="main">
2+
<main class="content col-xl-6 d-block align-top catalog" role="main">
33
<h1>NGINX Management Suite Events Catalog</h1>
44
<p>Information about all of the Events collected by NGINX Agent</p>
55
&nbsp;
66
{{ range .Site.Data.nms.catalogs.events }}
77
<a name="{{.name}}"></a>
88
<h2 id={{.name}}>{{.name}}
9-
<a class="headerlink float-right" href="#{{.name}}" title="{{.name}}"><i class="fas fa-link fa-xs"
10-
aria-hidden="true"></i></a>
9+
<a class="headerlink float-right" href="#{{.name}}" title="{{.name}}"></a>
1110
</h2>
12-
<table>
11+
<table class="catalog__table">
1312
<tbody>
1413
<tr>
1514
<td style="width: 200px; padding-bottom:5px">description</td>
@@ -55,6 +54,5 @@ <h2 id={{.name}}>{{.name}}
5554
</tr>
5655
</tbody>
5756
</table>
58-
<hr>
5957
{{ end }}
60-
</main>
58+
</main>

layouts/shortcodes/catalogs-metrics.html

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{{/* This shortcode **requires** that the document uses the _default/catalogs.html layout */}}
2-
<main class="content col-xl-6 d-block align-top" role="main">
2+
<main class="content col-xl-6 d-block align-top catalog" role="main">
33
<h1>NGINX Management Suite Metrics Catalog</h1>
44
<p>Information about all of the Metrics collected by NGINX Agent</p>
55
&nbsp;
66
{{ range .Site.Data.nms.catalogs.metrics }}
77
<a name="{{.name}}"></a>
88
<h2 id={{.name}}>{{.name}}
9-
<a class="headerlink float-right" href="#{{.name}}" title="{{.name}}"><i class="fas fa-link fa-xs"
10-
aria-hidden="true"></i></a>
9+
<a class="headerlink float-right" href="#{{.name}}" title="{{.name}}"></a>
1110
</h2>
12-
<table>
11+
<table class="catalog__table">
1312
<tbody>
1413
<tr>
1514
<td style="width: 200px; padding-bottom:5px">description</td>
@@ -55,6 +54,5 @@ <h2 id={{.name}}>{{.name}}
5554
</tr>
5655
</tbody>
5756
</table>
58-
<hr>
5957
{{ end }}
60-
</main>
58+
</main>

0 commit comments

Comments
 (0)