Skip to content

Commit 273b13b

Browse files
author
Jordan Violet
committed
product demo sidebar, name change and basic logo
1 parent a3ad2bb commit 273b13b

31 files changed

+509
-192
lines changed

blog/2019-05-28-first-blog-post.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

blog/2019-05-29-long-blog-post.md

Lines changed: 0 additions & 44 deletions
This file was deleted.

blog/2021-08-01-mdx-blog-post.mdx

Lines changed: 0 additions & 24 deletions
This file was deleted.
-93.9 KB
Binary file not shown.

blog/2021-08-26-welcome/index.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

blog/authors.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

blog/tags.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

create-product-docs.sh

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
#!/bin/bash
2+
3+
# Array of product information
4+
# Format: [file-name]:[display-name]
5+
PRODUCTS=(
6+
"access-analyzer:Access Analyzer"
7+
"activity-monitor:Activity Monitor"
8+
"auditor:Auditor"
9+
"change-tracker:Change Tracker"
10+
"data-classification:Data Classification"
11+
"directory-manager:Directory Manager"
12+
"endpoint-policy-manager:Endpoint Policy Manager"
13+
"endpoint-protector:Endpoint Protector"
14+
"identity-manager:Identity Manager"
15+
"password-policy-enforcer:Password Policy Enforcer"
16+
"password-reset:Password Reset"
17+
"password-secure:Password Secure"
18+
"pingcastle:PingCastle"
19+
"platform-governance-netsuite:Platform Governance for NetSuite"
20+
"platform-governance-salesforce:Platform Governance for Salesforce"
21+
"privilege-secure:Privilege Secure"
22+
"recovery-active-directory:Recovery for Active Directory"
23+
"threat-manager:Threat Manager"
24+
"threat-prevention:Threat Prevention"
25+
)
26+
27+
for product in "${PRODUCTS[@]}"; do
28+
# Split the product info
29+
IFS=":" read -r file_name display_name <<< "$product"
30+
31+
# Create the markdown file
32+
cat > "docs/products/$file_name.md" << EOF
33+
---
34+
id: $file_name
35+
title: $display_name
36+
sidebar_label: $display_name
37+
---
38+
39+
# $display_name
40+
41+
Product description and details will go here.
42+
43+
## Features
44+
45+
- Feature 1
46+
- Feature 2
47+
- Feature 3
48+
49+
## Documentation
50+
51+
More detailed documentation will be added here.
52+
EOF
53+
54+
echo "Created docs/products/$file_name.md"
55+
done
56+
57+
echo "All product documentation files have been created."

docs/products/1secure.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
id: 1secure
3+
title: 1Secure
4+
sidebar_label: 1Secure
5+
---
6+
7+
# 1Secure
8+
9+
Product description and details will go here.
10+
11+
## Features
12+
13+
- Feature 1
14+
- Feature 2
15+
- Feature 3
16+
17+
## Documentation
18+
19+
More detailed documentation will be added here.

docs/products/access-analyzer.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
id: access-analyzer
3+
title: Access Analyzer
4+
sidebar_label: Access Analyzer
5+
---
6+
7+
# Access Analyzer
8+
9+
Product description and details will go here.
10+
11+
## Features
12+
13+
- Feature 1
14+
- Feature 2
15+
- Feature 3
16+
17+
## Documentation
18+
19+
More detailed documentation will be added here.

0 commit comments

Comments
 (0)