Skip to content

Commit 6c7cdc6

Browse files
author
nginx
committed
Pre OSS commit
2 parents 48b958e + 0c8b443 commit 6c7cdc6

File tree

6 files changed

+62
-7
lines changed

6 files changed

+62
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@ This is the initial version of the NGINX documentation repo.
1616

1717
[Fix broken refs in nms docs](https://github.com/nginxinc/docs/pull/73)
1818

19-
# 0.4.0 (May 5, 2023)
19+
## 0.4.0 (May 5, 2023)
2020

2121
[Merge NAP-WAF docs](https://github.com/nginxinc/docs/pull/86)
2222

23-
# 0.5.0 (May 5, 2023)
23+
## 0.5.0 (May 5, 2023)
2424

2525
[Merge NAP-DOS docs](https://github.com/nginxinc/docs/pull/89)
2626

27-
# 0.6.0 (May 5, 2023)
27+
## 0.6.0 (May 5, 2023)
2828

2929
[Merge N-Plus docs](https://github.com/nginxinc/docs/pull/96)
3030

31+

content/nms/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ draft: false
77
title: About
88
description: Learn about NGINX Management Suite.
99
toc: true
10-
weight: 50
10+
weight: 10
1111
docs: "DOCS-905"
1212
doctypes: ["concept"]
1313
---

content/nms/nms-resilience.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "NGINX Management Suite Resiliency"
33
date: 2023-03-13T08:29:53-07:00
44
draft: false
55
description: "NGINX Management Suite installed on Kubernetes provides control plane resilience through fault tolerance and automated recovery."
6-
weight: 200
6+
weight: 30
77
toc: true
88
tags: [ "docs" ]
99
docs: "DOCS-1161"

content/nms/oss-attribution-notice.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ draft: false
88
# The description text appears in search results and at the top of the doc.
99
description: "NGINX Management Suite relies on and benefits from open-source software projects. Credits are given to these projects."
1010
# Assign weights in increments of 100
11-
weight: 1000
11+
weight: 5000
1212
toc: true
1313
tags: [ "docs" ]
1414
# Create a new entry in the Jira DOCS Catalog and add the ticket ID (DOCS-<number>) below

content/nms/tech-specs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ draft: false
55
title: Technical Specifications
66
description: This document outlines the requirements for the NGINX Management Suite and NGINX Agent, such as compatible platforms, hardware specifications, sizing advice, compatible web browsers, and more.
77
toc: true
8-
weight: 100
8+
weight: 20
99
docs: "DOCS-805"
1010
aliases:
1111
- /nginx-instance-manager/getting-started/technical-specifications/

layouts/partials/list-main.html

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<div class="list-page">
2+
<div class="col-md-12 col-xl-12 py-md-3 pl-md-5">
3+
<div class="page-header list">
4+
<h1 class="bd-title">
5+
{{ .Title }}
6+
</h1>
7+
{{ if .Description }}
8+
<p>
9+
{{ .Description | markdownify }}
10+
</p>
11+
{{ end}}
12+
{{ if .Content }}
13+
<p>
14+
{{ .Content | markdownify }}
15+
</p>
16+
{{ end }}
17+
</div>
18+
</div>
19+
20+
<section>
21+
<div class="row">
22+
<div class="card-deck">
23+
{{ range .Pages.GroupBy "Section" }}
24+
25+
{{ range .Pages.ByWeight }}
26+
<div class="col-md-5 card">
27+
<div class="card-body">
28+
<h3 class="card-title">
29+
<i class="fas fa-{{if eq .Kind "page"}}file-alt{{else}}book{{end}} fa-2x card-img-top"></i>
30+
<a href="{{ if .Params.url}}{{ .Params.url}}{{else}}{{ .Permalink }}{{end}}">{{ .Title }}</a>
31+
</h3>
32+
{{/*}}<p class="card-text">
33+
{{ if .Description }}{{ .Description | markdownify }}{{ end }}
34+
</p>{{*/}}
35+
36+
</div>
37+
</div>
38+
39+
{{ end }}
40+
</div>
41+
</div>
42+
{{ end }}
43+
44+
45+
</section>
46+
47+
{{ if not .IsHome }}
48+
<div class="row justify-content-center">
49+
{{ partial "pagination.html" . }}
50+
</div>
51+
{{ end }}
52+
53+
54+
</div>

0 commit comments

Comments
 (0)