Skip to content

Commit 7980b35

Browse files
committed
Fix catalog and home page
1 parent 6fa64d5 commit 7980b35

File tree

3 files changed

+11
-17
lines changed

3 files changed

+11
-17
lines changed
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)