diff --git a/docs/.vuepress/breadcrumbs.js b/docs/.vuepress/breadcrumbs.js
new file mode 100644
index 000000000..c110aa474
--- /dev/null
+++ b/docs/.vuepress/breadcrumbs.js
@@ -0,0 +1,70 @@
+export default {
+ functional: true,
+ render(h, context) {
+ const frontmatter = context.parent.$page.frontmatter;
+
+const pathMap = {
+ 'Migration': { path: '/migration/', linkable: true },
+ 'ELevate Project': { path: '/elevate/', linkable: true },
+ 'Installation': {path: '/', linkable: true },
+ 'Repositories': {path: '/repos/', linkable: true },
+ 'Extra Repositories': {path: '/repos/extras', linkable: true},
+ 'Release Notes': {path: '/release-notes/', linkable: true },
+ 'Older AlmaLinux 8 releases': {linkable: false},
+ 'Older AlmaLinux 9 releases': {linkable: false},
+ 'AlmaLinux 8 betas': {linkable: false},
+ 'AlmaLinux 9 betas': {linkable: false},
+ 'ALESCo': {path: '/alesco', linkable: true},
+ 'ALESCo Meeting Minutes': {path: '/alesco/meeting-minutes', linkable: true},
+ 'Contribute': {linkable: false},
+ 'Special interest groups (SIGs)': {path: '/sigs/', linkable: true},
+ 'The Process for Creating a New SIG* in the AlmaLinux Community': {path: '/sigs/ProcessForCreatingNewSIG', linkable: true},
+ 'Marketing': {path: '/sigs/Marketing', linkable: true},
+ 'Development': {linkable: false},
+ 'Private Keys': {linkable: false},
+ 'Documentation': {linkable: false},
+ 'Howto Series': {path: '/series/', linkable: true},
+ 'Nginx Series': {path: '/series/nginx/', linkable: true},
+ 'System Series': {path: '/series/system/', linkable: true},
+ 'Security Guides': {path: '/documentation/guides', linkable: true},
+ 'Installation': {linkable: false},
+ 'Cloud Images': {path: '/cloud/', linkable: true},
+ 'Generic Cloud (Cloud-init)': {linkable: false},
+ 'AWS': {linkable: false},
+ 'Containers': {path: '/containers/', linkable: true},
+ 'Foundation': {linkable: false},
+
+ // Add more mappings for other pages here...
+};
+
+ const breadcrumbs = [];
+ ['grandparent', 'parent', 'child'].forEach((level) => {
+ if (frontmatter[level] && pathMap[frontmatter[level]]) {
+ breadcrumbs.push({
+ text: frontmatter[level],
+ path: pathMap[frontmatter[level]].path,
+ linkable: pathMap[frontmatter[level]].linkable,
+ });
+ }
+ });
+
+ breadcrumbs.push({
+ text: frontmatter.title,
+ path: context.parent.$route.path,
+ linkable: false, // Current page is usually not a link
+ });
+
+ return h(
+ 'nav',
+ { class: 'breadcrumbs' },
+ breadcrumbs.map((crumb, index) =>
+ h('span', {}, [
+ crumb.linkable
+ ? h('router-link', { attrs: { to: crumb.path } }, crumb.text)
+ : h('span', {}, crumb.text), // Render plain text if not linkable
+ index < breadcrumbs.length - 1 ? ' > ' : ''
+ ])
+ )
+ );
+ }
+};
diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js
index f8c5918c5..74dcc0e0a 100644
--- a/docs/.vuepress/config.js
+++ b/docs/.vuepress/config.js
@@ -1,4 +1,4 @@
-
+const path = require('path');
module.exports = {
title: 'AlmaLinux Wiki',
description: 'AlmaLinux OS Documentation',
@@ -26,6 +26,16 @@ module.exports = {
{ text: 'Mailing Lists', link: 'https://lists.almalinux.org/' },
{ text: 'Bugs', link: 'https://bugs.almalinux.org/' }
],
+ plugins: [
+ [
+ '@vuepress/plugin-register-components',
+ {
+ components: {
+ Breadcrumbs: path.resolve(__dirname, './breadcrumbs.js'),
+ },
+ },
+ ],
+ ],
sidebar: [
{
title: 'About',
diff --git a/docs/.vuepress/enhanceApp.js b/docs/.vuepress/enhanceApp.js
new file mode 100644
index 000000000..251d392f4
--- /dev/null
+++ b/docs/.vuepress/enhanceApp.js
@@ -0,0 +1,5 @@
+import Breadcrumbs from './breadcrumbs.js';
+
+export default ({ Vue, options, router, siteData }) => {
+ Vue.component('Breadcrumbs', Breadcrumbs);
+};
diff --git a/docs/.vuepress/styles/index.styl b/docs/.vuepress/styles/index.styl
index a05eff2d8..d2dbf7472 100644
--- a/docs/.vuepress/styles/index.styl
+++ b/docs/.vuepress/styles/index.styl
@@ -62,3 +62,18 @@ tr:nth-child(2n)
.custom-block.danger
background-color $dangerBgColor
border-color $dangerBorderColor
+
+.breadcrumbs {
+ font-size: 14px;
+ margin: 10px 0;
+}
+
+.breadcrumbs a {
+ text-decoration: none;
+ color: #017698;
+}
+
+.breadcrumbs a:hover {
+ text-decoration: underline;
+}
+
diff --git a/docs/Comparison.md b/docs/Comparison.md
index 7f9e613ab..802db0fae 100644
--- a/docs/Comparison.md
+++ b/docs/Comparison.md
@@ -1,11 +1,14 @@
---
-title: "Enterprise Linux Comparison"
+title: 'Enterprise Linux Comparison'
+parent: 'Documentation'
---
-# Enterprise Linux Comparison
-
###### Last updated 2024-09-09
+
+
+# Enterprise Linux Comparison
+
When deciding what OS to use, there are many factors that come into play for a variety of reasons. This page attempts to outline some of the specific differences, while focusing on the reasons that many in the AlmaLinux community have cited as the reasons they pick AlmaLinux. The enterprise linux ecosystem is vast and has many differentiators that are nuanced, hard to articulated, and don't fit easily into charts, but we have attempted to capture some of the differentiations below.
## Build Sources
@@ -64,4 +67,4 @@ At the outset, it was important to the founding members of the AlmaLinux OS proj
[almalinux.fips]: https://almalinux.org/blog/2023-09-19-fips-validation-for-almalinux/
[oracle.fips]: https://www.oracle.com/corporate/security-practices/assurance/development/external-security-evaluations/fips/certifications.html
[rocky.fips]: https://rockylinux.org/news/certifications-fips-2022-06-11
-[RHEL.fips]: https://access.redhat.com/articles/compliance_activities_and_gov_standards#fips-140-2-and-fips-140-3-2
\ No newline at end of file
+[RHEL.fips]: https://access.redhat.com/articles/compliance_activities_and_gov_standards#fips-140-2-and-fips-140-3-2
diff --git a/docs/Contribute-to-AlmaLinux-Build-System.md b/docs/Contribute-to-AlmaLinux-Build-System.md
index e4bfe5858..5c279845b 100644
--- a/docs/Contribute-to-AlmaLinux-Build-System.md
+++ b/docs/Contribute-to-AlmaLinux-Build-System.md
@@ -1,9 +1,12 @@
---
title: 'AlmaLinux Build System'
+parent: 'Contribute'
---
###### last updated: 2024-10-16
+
+
# Contribute to AlmaLinux Build System
The AlmaLinux Build System is managed by the [SIG/Build System](/sigs/Build-System) SIG.
diff --git a/docs/Contribute-to-Documentation.md b/docs/Contribute-to-Documentation.md
index d130cbcc7..796a6a703 100644
--- a/docs/Contribute-to-Documentation.md
+++ b/docs/Contribute-to-Documentation.md
@@ -1,9 +1,12 @@
---
title: 'Documentation'
+parent: 'Contribute'
---
###### last updated: 2024-03-25
+
+
# Contribute to AlmaLinux Documentation
If you are interested in contributing to AlmaLinux Wiki Documentation, we recommend you follow these guidelines.
diff --git a/docs/Contribute-to-Packaging.md b/docs/Contribute-to-Packaging.md
index e5a3a96fc..30e3502d3 100644
--- a/docs/Contribute-to-Packaging.md
+++ b/docs/Contribute-to-Packaging.md
@@ -1,9 +1,12 @@
---
title: 'Packaging'
+parent: 'Contribute'
---
###### last updated: 2024-09-20
+
+
# Contribute to Packaging
AlmaLinux OS is, at its base, a collection of packages. For anyone who would like to contribute to the operating system, we have a collection of ways to help!
diff --git a/docs/Contribute-to-Testing.md b/docs/Contribute-to-Testing.md
index 053798f80..c3517d7f8 100644
--- a/docs/Contribute-to-Testing.md
+++ b/docs/Contribute-to-Testing.md
@@ -1,9 +1,12 @@
---
title: 'Testing'
+parent: 'Contribute'
---
###### last updated: 2024-08-30
+
+
# Contribute to Testing
At AlmaLinux, we're dedicated to providing a high-quality experience for our community. We believe that thorough testing is crucial to guaranteeing the quality and reliability of the distribution. We put a lot of effort into testing and making sure everything works smoothly regardless of where or what you run.
diff --git a/docs/Contribute.md b/docs/Contribute.md
index 064219fb4..471f0221b 100644
--- a/docs/Contribute.md
+++ b/docs/Contribute.md
@@ -1,6 +1,10 @@
---
title: 'Help AlmaLinux OS'
+parent: 'Contribute'
---
+
+
+
# Contributing to the AlmaLinux project
AlmaLinux OS development, infrastructure management, and overall project promotion are organized using our community chat. There are many ways to contribute to AlmaLinux OS - testing, quality assurance, documentation, and more. We'd love to welcome you! To help get you started, here is a Q&A video on the subject:
diff --git a/docs/Election2022.md b/docs/Election2022.md
index cb02feeff..2081390fa 100644
--- a/docs/Election2022.md
+++ b/docs/Election2022.md
@@ -1,6 +1,10 @@
---
title: 'Election 2022'
+parent: 'Foundation'
---
+
+
+
# AlmaLinux Board of Directors Election 2022
# Sept 19, 2022 - Election Results
diff --git a/docs/FAQ.md b/docs/FAQ.md
index f7343cfb6..cfe1dd3a9 100644
--- a/docs/FAQ.md
+++ b/docs/FAQ.md
@@ -1,8 +1,11 @@
---
title: 'FAQ'
+parent: 'Documentation'
---
###### last updated: 2023-10-02
+
+
# Frequently asked questions
### What is AlmaLinux?
diff --git a/docs/Help-translating-site.md b/docs/Help-translating-site.md
index 4d3b13a6b..9919ce07e 100644
--- a/docs/Help-translating-site.md
+++ b/docs/Help-translating-site.md
@@ -1,6 +1,10 @@
---
title: 'Help translating site'
+parent: Contribute'
---
+
+
+
# Help translating the site
The [almalinux.org website](https://almalinux.org/) localization and translation is managed by [Weblate](https://hosted.weblate.org/engage/almalinux/) and supported by contributors. The translations that get submitted through Weblate are automatically submitted to the [almalinux.org repo](https://github.com/AlmaLinux/almalinux.org) as a pull request.
@@ -35,4 +39,4 @@ After translating from English to your chosen language (.e.g Hebrew) press on "S
You can request new languages to be added by creating a ticket in [GitHub issues](https://github.com/AlmaLinux/almalinux.org/issues), like so:
-
\ No newline at end of file
+
diff --git a/docs/Howto.md b/docs/Howto.md
index 012dea2c9..4a26eb799 100644
--- a/docs/Howto.md
+++ b/docs/Howto.md
@@ -1,7 +1,10 @@
---
-title: "Howtos"
+\title: "Howtos"
+parent: 'Documentation'
---
+
+
# AlmaLinux Howto Guides (external)
## Installation Guides
diff --git a/docs/LiveMedia.md b/docs/LiveMedia.md
index 7168fb55f..31d7faba9 100644
--- a/docs/LiveMedia.md
+++ b/docs/LiveMedia.md
@@ -1,6 +1,10 @@
---
-title: "Live Media"
+title: 'Live Media'
+parent: 'Installation'
---
+
+
+
# Live Media
## About Live Media
diff --git a/docs/Mirrors.md b/docs/Mirrors.md
index 02fe6f6f3..53e7801cd 100644
--- a/docs/Mirrors.md
+++ b/docs/Mirrors.md
@@ -1,6 +1,10 @@
---
title: 'Mirrors'
+parent: 'Contribute'
---
+
+
+
# How to create a public mirror for AlmaLinux
Mirrors are extremely important to provide a fast and reliable
diff --git a/docs/Transparency.md b/docs/Transparency.md
index bbe7edc35..40bbd6afc 100644
--- a/docs/Transparency.md
+++ b/docs/Transparency.md
@@ -1,3 +1,10 @@
+---
+title: 'AlmaLinux OS Foundation'
+parent: 'Foundation'
+---
+
+
+
# AlmaLinux OS Foundation
The AlmaLinux OS Foundation is 501(c)(6) non-profit organization. It owns all assets related to AlmaLinux OS. It is governed by a set of [Bylaws](https://almalinux.org/p/foundation-bylaws/).
diff --git a/docs/alesco/meeting-minutes.md b/docs/alesco/meeting-minutes.md
index ea5789756..8261054b1 100644
--- a/docs/alesco/meeting-minutes.md
+++ b/docs/alesco/meeting-minutes.md
@@ -1,7 +1,10 @@
---
-Title: 'ALESCo Meeting Minutes'
+title: 'ALESCo Meeting Minutes'
+parent: 'ALESCo'
---
+
+
Each meeting of ALESCo is public, and future meetings can be found on [events.almalinux.org](https://events.almalinux.org/category/7/)
# ALESCo Meeting Minutes
diff --git a/docs/alesco/meeting-minutes/2024-07-24.md b/docs/alesco/meeting-minutes/2024-07-24.md
index 6473ea44a..4059acfbd 100644
--- a/docs/alesco/meeting-minutes/2024-07-24.md
+++ b/docs/alesco/meeting-minutes/2024-07-24.md
@@ -1,3 +1,11 @@
+---
+title: 'ALESCo Meeting Minutes (2024-07-24)'
+parent: 'ALESCo Meeting Minutes'
+grandparent: 'ALESCo'
+---
+
+
+
# ALESCo Meeting Minutes (2024-07-24)
Minutes recorded by Cody Robertson.
diff --git a/docs/alesco/meeting-minutes/2024-08-21.md b/docs/alesco/meeting-minutes/2024-08-21.md
index 88a4b855e..ec10f12b2 100644
--- a/docs/alesco/meeting-minutes/2024-08-21.md
+++ b/docs/alesco/meeting-minutes/2024-08-21.md
@@ -1,3 +1,11 @@
+---
+title: 'ALESCo Meeting Minutes (2024-08-21)'
+parent: 'ALESCo Meeting Minutes'
+grandparent: 'ALESCo'
+---
+
+
+
# ALESCo Meeting Minutes (2024-08-21)
Minutes recorded by Jonathan Wright.
diff --git a/docs/alesco/meeting-minutes/2024-09-04.md b/docs/alesco/meeting-minutes/2024-09-04.md
index 4b4ab2d75..c08195d8b 100644
--- a/docs/alesco/meeting-minutes/2024-09-04.md
+++ b/docs/alesco/meeting-minutes/2024-09-04.md
@@ -1,3 +1,11 @@
+---
+title: 'ALESCo Meeting Minutes (2024-09-04)'
+parent: 'ALESCo Meeting Minutes'
+grandparent: 'ALESCo'
+---
+
+
+
# ALESCo Meeting Minutes (2024-09-04)
Minutes recorded by Jonathan Wright.
diff --git a/docs/alesco/meeting-minutes/2024-10-02.md b/docs/alesco/meeting-minutes/2024-10-02.md
index 1d8f86c16..dd1048c30 100644
--- a/docs/alesco/meeting-minutes/2024-10-02.md
+++ b/docs/alesco/meeting-minutes/2024-10-02.md
@@ -1,3 +1,11 @@
+---
+title: 'ALESCo Meeting Minutes (2024-10-02)'
+parent: 'ALESCo Meeting Minutes'
+grandparent: 'ALESCo'
+---
+
+
+
# ALESCo Meeting Minutes (2024-10-02)
Minutes recorded by Cody Robertson.
diff --git a/docs/cloud/AWS.md b/docs/cloud/AWS.md
index ab2532854..0884e725a 100644
--- a/docs/cloud/AWS.md
+++ b/docs/cloud/AWS.md
@@ -1,6 +1,12 @@
---
title: 'AWS'
+parent: 'Cloud Images'
+grandparent: 'Installation'
+child: 'AWS'
---
+
+
+
# AlmaLinux OS Amazon Web Services AMIs
AlmaLinux OS offers Amazon Machine Images in a number of formats and regions for consumption on AWS. All AlmaLinux OS AMIs are completely free of charge regardless of the deployment channel.
diff --git a/docs/cloud/Azure.md b/docs/cloud/Azure.md
index 3d9b1fb88..9f11ebbad 100644
--- a/docs/cloud/Azure.md
+++ b/docs/cloud/Azure.md
@@ -1,6 +1,11 @@
---
title: 'Azure'
+parent: 'Cloud Images'
+grandparent: 'Installation'
---
+
+
+
# AlmaLinux OS in Azure Cloud
AlmaLinux offers images for Azure across all Azure regions via the Azure Marketplace. Images are deployable via the marketplace, portal and CLI and for both Gen1 and Gen2 machines. The images are completely free of charge regardless of the deployment channel.
diff --git a/docs/cloud/EC2-instance-connect.md b/docs/cloud/EC2-instance-connect.md
index 920f42cfa..3bb64db7f 100644
--- a/docs/cloud/EC2-instance-connect.md
+++ b/docs/cloud/EC2-instance-connect.md
@@ -1,9 +1,14 @@
---
title: 'EC2 Instance Connect'
+parent: 'Cloud Images'
+grandparent: 'Installation'
+child: 'AWS'
---
###### last modified: 2024-03-05
+
+
# How to use EC2 Instance Connect
## About EC2 Instance Connect
diff --git a/docs/cloud/Generic-cloud-on-local.md b/docs/cloud/Generic-cloud-on-local.md
index 2752afd3d..80dcf581f 100644
--- a/docs/cloud/Generic-cloud-on-local.md
+++ b/docs/cloud/Generic-cloud-on-local.md
@@ -1,8 +1,12 @@
---
-title: Using Generic Cloud Images on a local machine
+title: 'Using Generic Cloud Images on a local machine'
lang: en-US
+parent: 'Cloud Images'
+grandparent: 'Installation'
+child: 'Generic CLoud (Cloud-init)'
---
+
# Using Generic Cloud Images on a local machine
diff --git a/docs/cloud/Generic-cloud.md b/docs/cloud/Generic-cloud.md
index 7a1087d5a..0c937b2bd 100644
--- a/docs/cloud/Generic-cloud.md
+++ b/docs/cloud/Generic-cloud.md
@@ -1,6 +1,12 @@
---
title: 'Generic Cloud (Cloud-init)'
+parent: 'Cloud Images'
+grandparent: 'Installation'
+child: 'Generic CLoud (Cloud-init)'
---
+
+
+
# AlmaLinux OS Generic Cloud (Cloud-init) image
The Generic Cloud image is a general purpose virtual machine image that
diff --git a/docs/cloud/Google.md b/docs/cloud/Google.md
index 0528d2d4d..85cb893c8 100644
--- a/docs/cloud/Google.md
+++ b/docs/cloud/Google.md
@@ -1,7 +1,11 @@
---
title: 'Google Cloud'
+parent: 'Cloud Images'
+grandparent: 'Installation'
---
+
+
# AlmaLinux OS Google Cloud Platform
:::warning
diff --git a/docs/cloud/OCI.md b/docs/cloud/OCI.md
index 973d8dae6..133bc612d 100644
--- a/docs/cloud/OCI.md
+++ b/docs/cloud/OCI.md
@@ -1,6 +1,11 @@
---
title: 'Oracle Cloud Infrastructure'
+parent: 'Cloud Images'
+grandparent: 'Installation'
---
+
+
+
# AlmaLinux OS in Oracle Cloud Infrastructure
AlmaLinux offers images for Oracle Cloud Infrastructure across all OCI regions via the [Oracle Cloud Marketplace](https://cloudmarketplace.oracle.com/marketplace/en_US/homeLinkPage). Images are deployable for Regular, Shielded and ARM type instances via the Oracle Cloud Marketplace, Partner Image on Oracle Cloud Infrastructure Console and [OCI CLI](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/cliconcepts.htm). The images are completely free of charge regardless of the deployment channel.
diff --git a/docs/cloud/OpenNebula.md b/docs/cloud/OpenNebula.md
index 73957075b..df86ebea6 100644
--- a/docs/cloud/OpenNebula.md
+++ b/docs/cloud/OpenNebula.md
@@ -1,6 +1,11 @@
---
title: 'OpenNebula'
+parent: 'Cloud Images'
+grandparent: 'Installation'
---
+
+
+
# AlmaLinux OS OpenNebula image
The OpenNebula image contains the OpenNebula addons repository as delivered via the AlmaLinux [Cloud SIG](https://wiki.almalinux.org/sigs/Cloud.html). The repo provides the latest upstream version of the OpenNebula Linux VM Contextualization to prepare the networking in the running guest virtual machine, configure SSH keys, set passwords, run custom start scripts, `onesysprep`, etc.
diff --git a/docs/cloud/README.md b/docs/cloud/README.md
index dcfed3e21..99bdad58c 100644
--- a/docs/cloud/README.md
+++ b/docs/cloud/README.md
@@ -1,3 +1,10 @@
+---
+title: 'AlmaLinux Cloud Images'
+parent: 'Installation'
+---
+
+
+
# Cloud Images
At AlmaLinux, cloud integration is among our top priorities, ensuring that users get the most streamlined and efficient experience when deploying our OS in the cloud. Our dedication to this initiative is evident through the exceptional work of our [Cloud Special Interest Group (Cloud SIG)](/sigs/Cloud). They relentlessly work on perfecting and tailoring AlmaLinux for cloud environments, making our cloud images stand out for their performance, stability, and adaptability.
diff --git a/docs/cloud/cloud-changelog.md b/docs/cloud/cloud-changelog.md
index 0b9826cc2..6ceed0634 100644
--- a/docs/cloud/cloud-changelog.md
+++ b/docs/cloud/cloud-changelog.md
@@ -1,9 +1,13 @@
---
title: 'Changelog'
+parent: 'Cloud Images'
+grandparent: 'Installation'
---
###### last updated: 2024-12-23
+
+
## Amazon Web Services AMIs
### AlmaLinux OS versions 9.5.20241122:
diff --git a/docs/containers/README.md b/docs/containers/README.md
index 7c60bc78b..88de924ee 100644
--- a/docs/containers/README.md
+++ b/docs/containers/README.md
@@ -1,3 +1,10 @@
+---
+title: 'Containers on AlmaLinux'
+parent: 'Installation'
+---
+
+
+
# Containers on AlmaLinux
In the evolving world of development and deployment, containers have become essential tools, bringing consistency, scalability, and efficiency to the forefront. At AlmaLinux, we've embraced this trend, with our Cloud Special Interest Group (Cloud SIG) playing a pivotal role in aligning our offerings with the needs of the community.
diff --git a/docs/containers/docker-images.md b/docs/containers/docker-images.md
index 1911e0eb1..4ad2c19ab 100644
--- a/docs/containers/docker-images.md
+++ b/docs/containers/docker-images.md
@@ -1,9 +1,13 @@
---
title: 'Docker Images'
+parent: 'Containers'
+grandparent: 'Installation'
---
###### last updated: 2024-04-22
+
+
# AlmaLinux OS Docker Images
## About AlmaLinux Docker Images
diff --git a/docs/development/AlmaLinux-Build-System.md b/docs/development/AlmaLinux-Build-System.md
index 3ad1a736d..c4a9c2f10 100644
--- a/docs/development/AlmaLinux-Build-System.md
+++ b/docs/development/AlmaLinux-Build-System.md
@@ -1,9 +1,12 @@
---
title: 'AlmaLinux Build System'
+parent: 'Development'
---
###### last updated: 2024-10-28
+
+
# AlmaLinux Build System
## About AlmaLinux Build System
diff --git a/docs/development/Modified-packages.md b/docs/development/Modified-packages.md
index fc961dcec..94412b68f 100644
--- a/docs/development/Modified-packages.md
+++ b/docs/development/Modified-packages.md
@@ -1,8 +1,12 @@
---
-title: "Modified packages"
+title: 'Modified packages'
+parent: 'Development'
---
+
###### last updated: 2024-12-19
+
+
# AlmaLinux OS Modified packages
All AlmaLinux OS packages, including modified ones, can be found on [git.almalinux.org](https://git.almalinux.org/explore/repos). There are several branches in each package repository:
diff --git a/docs/development/Packaging.md b/docs/development/Packaging.md
index 7cd4f5307..ecc004eeb 100644
--- a/docs/development/Packaging.md
+++ b/docs/development/Packaging.md
@@ -1,6 +1,10 @@
---
title: 'Packaging'
+parent: 'Development'
---
+
+
+
# AlmaLinux packaging guideline
diff --git a/docs/development/almalinux-os-kitten-10.md b/docs/development/almalinux-os-kitten-10.md
index b5c0a2d15..0993d19bb 100644
--- a/docs/development/almalinux-os-kitten-10.md
+++ b/docs/development/almalinux-os-kitten-10.md
@@ -1,9 +1,12 @@
---
title: 'AlmaLinux OS Kitten 10'
+parent: 'Development'
---
###### last modified: 2025-01-06
+
+
# About AlmaLinux OS Kitten 10
###### Note: Our kitten is not related to [this one](https://www.sandia.gov/ccr/software/kitten-lightweight-kernel/) :D
diff --git a/docs/development/building-almalinux-iso-locally.md b/docs/development/building-almalinux-iso-locally.md
index 598f1a507..5b6cee48e 100644
--- a/docs/development/building-almalinux-iso-locally.md
+++ b/docs/development/building-almalinux-iso-locally.md
@@ -1,7 +1,10 @@
---
title: 'Building AlmaLinux ISO locally'
+parent: 'Development'
---
+
+
# Building AlmaLinux ISO locally
This guide walks you through the process of building AlmaLinux OS ISO on your local AlmaLinux OS 9 machine.
diff --git a/docs/development/openQA.md b/docs/development/openQA.md
index 3be4473be..8f28fa2ff 100644
--- a/docs/development/openQA.md
+++ b/docs/development/openQA.md
@@ -1,7 +1,10 @@
---
title: 'openQA'
+parent: 'Documentation'
---
+
+
| Experience Level | ⭑⭑⭒⭒⭒ (Intermediate) |
|--------------------|---------------------- |
| Last modified date | 4/12/2023 |
diff --git a/docs/development/private-keys/package-signing.md b/docs/development/private-keys/package-signing.md
index d41afb381..3fbf6d6a0 100644
--- a/docs/development/private-keys/package-signing.md
+++ b/docs/development/private-keys/package-signing.md
@@ -1,6 +1,14 @@
-# Package Signing Key Generation and Handling
+---
+title: 'Package Signing Key Generation and Handling'
+parent: 'Private Keys'
+grandparent: 'Development'
+---
+
+###### Last updated 2024-07-10
-Last updated 2024-07-10.
+
+
+# Package Signing Key Generation and Handling
## Owernship
Certificate and key generation and handling is overseen by ALESCo.
diff --git a/docs/development/private-keys/secure-boot.md b/docs/development/private-keys/secure-boot.md
index 799a70344..ca7e0150f 100644
--- a/docs/development/private-keys/secure-boot.md
+++ b/docs/development/private-keys/secure-boot.md
@@ -1,6 +1,14 @@
-# Secure Boot Key Generation and Handling
+---
+title: 'Secure Boot Key Generation and Handling'
+parent: 'Private Keys'
+grandparent: 'Development'
+---
+
+###### Last updated 2024-03-13
-Last updated 2024-03-13.
+
+
+# Secure Boot Key Generation and Handling
## Owernship
Certificate and key generation and handling is overseen by ALESCo.
diff --git a/docs/documentation/after-installation-guide.md b/docs/documentation/after-installation-guide.md
index a26db7398..187fda2c3 100644
--- a/docs/documentation/after-installation-guide.md
+++ b/docs/documentation/after-installation-guide.md
@@ -1,8 +1,10 @@
---
-title: "AlmaLinux After-Installation Guide"
+title: 'AlmaLinux After-Installation Guide'
+parent: 'Installation'
---
-###### last updated: 2023-01-15
+
+
| 💡 | Experience Level | ⭐☆☆☆☆ |
diff --git a/docs/documentation/epel-and-rpmfusion.md b/docs/documentation/epel-and-rpmfusion.md
index 418eeb999..9a3f8fde1 100644
--- a/docs/documentation/epel-and-rpmfusion.md
+++ b/docs/documentation/epel-and-rpmfusion.md
@@ -1,7 +1,12 @@
---
-title: "Installing EPEL and RPM Fusion"
+title: 'Installing EPEL and RPM Fusion'
+parent: 'Repositories'
+grandparent: 'Installation'
+child: 'Extra Repositories'
---
+
+
# Installing EPEL and RPM Fusion
This guide describes how to install _Extra Packages for Enterprise Linux (EPEL)_ and _RPM Fusion_, two software repositories that contain software that is not included by AlmaLinux (like codecs).
diff --git a/docs/documentation/errata.md b/docs/documentation/errata.md
index f2790afa4..32a575e81 100644
--- a/docs/documentation/errata.md
+++ b/docs/documentation/errata.md
@@ -1,7 +1,11 @@
---
-title: "Security Errata"
+title: 'Security Errata'
+parent: 'Security Guides'
+grandparent: 'Documentation'
---
+
+
# AlmaLinux Errata
### About Errata
diff --git a/docs/documentation/guides.md b/docs/documentation/guides.md
index e2daeab20..f4848f1b2 100644
--- a/docs/documentation/guides.md
+++ b/docs/documentation/guides.md
@@ -1,3 +1,10 @@
+---
+title: 'Security Guides'
+parent: 'Documentation'
+---
+
+
+
# Documentation | Security Guides
In this section of the wiki, we emphasize AlmaLinux OS security through:
diff --git a/docs/documentation/installation-guide.md b/docs/documentation/installation-guide.md
index 181155743..756e8bfdf 100644
--- a/docs/documentation/installation-guide.md
+++ b/docs/documentation/installation-guide.md
@@ -1,9 +1,12 @@
---
-title: "AlmaLinux Installation Guide"
+title: 'AlmaLinux Installation Guide'
+parent: 'Installation'
---
###### last updated: 2023-02-09
+
+
# AlmaLinux installation guide (ISOs)
These guide steps describe how to download AlmaLinux ISO, create a USB stick, and install AlmaLinux OS using it.
diff --git a/docs/documentation/kickstart-guide.md b/docs/documentation/kickstart-guide.md
index 88ae51316..978a110c7 100644
--- a/docs/documentation/kickstart-guide.md
+++ b/docs/documentation/kickstart-guide.md
@@ -1,3 +1,10 @@
+---
+title: 'Kickstart Installation (Unattended Installation)'
+parent: 'Installation'
+---
+
+
+
## Kickstart Installation (Unattended Installation)
Kickstart is used to perform unattended installation with predefined set of parameters
diff --git a/docs/documentation/migration-guide.md b/docs/documentation/migration-guide.md
index 276188212..036de0067 100644
--- a/docs/documentation/migration-guide.md
+++ b/docs/documentation/migration-guide.md
@@ -1,7 +1,10 @@
---
title: 'Migration Guide'
+parent: 'Migration'
---
+
+
# AlmaLinux Migration Guide
This guide describes how to convert your operating system to AlmaLinux using the [AlmaLinux Migration tool](https://github.com/AlmaLinux/almalinux-deploy).
diff --git a/docs/documentation/openscap-guide-for-9.md b/docs/documentation/openscap-guide-for-9.md
index 2df537d61..55b7f14bf 100644
--- a/docs/documentation/openscap-guide-for-9.md
+++ b/docs/documentation/openscap-guide-for-9.md
@@ -1,7 +1,11 @@
---
-title: AlmaLinux 9 OpenSCAP Guide
+title: 'AlmaLinux 9 OpenSCAP Guide'
+parent: 'Security Guides'
+grandparent: 'Documentation'
---
+
+
# AlmaLinux 9 OpenSCAP Guide
This guide was developed AlmaLinux 9 OS.
diff --git a/docs/documentation/openscap-guide.md b/docs/documentation/openscap-guide.md
index b227d0018..86998c55a 100644
--- a/docs/documentation/openscap-guide.md
+++ b/docs/documentation/openscap-guide.md
@@ -1,7 +1,11 @@
---
-AlmaLinux OpenSCAP Guide
+title: 'AlmaLinux OpenSCAP Guide'
+parent: 'Security Guides'
+grandparent: 'Documentation'
---
+
+
# AlmaLinux 8 OpenSCAP Guide
:::warning
diff --git a/docs/documentation/oval-streams.md b/docs/documentation/oval-streams.md
index e17eaa387..353629c68 100644
--- a/docs/documentation/oval-streams.md
+++ b/docs/documentation/oval-streams.md
@@ -1,7 +1,11 @@
---
-title: "AlmaLinux OS OVAL streams"
+title: 'AlmaLinux OS OVAL streams'
+parent: 'Security Guides'
+grandparent: 'Documentation'
---
+
+
# AlmaLinux OS OVAL streams
The supported AlmaLinux OS versions and their public OVAL streams are listed below:
diff --git a/docs/documentation/package-building-guide.md b/docs/documentation/package-building-guide.md
index 72beb1e35..dc1b9912a 100644
--- a/docs/documentation/package-building-guide.md
+++ b/docs/documentation/package-building-guide.md
@@ -1,7 +1,10 @@
---
-title: Package Building Guide
+title: 'Package Building Guide'
+parent: 'Development'
---
+
+
# AlmaLinux Package Building Guide
This guide contains step-by-step instructions on how to build for AlmaLinux packages for different architectures. It also includes some background information about the mock tool, setup instructions, and some examples. These details can be helpful for the building packages for the AlmaLinux project.
diff --git a/docs/documentation/raspberry-pi.md b/docs/documentation/raspberry-pi.md
index 6a646ff07..78da76d14 100644
--- a/docs/documentation/raspberry-pi.md
+++ b/docs/documentation/raspberry-pi.md
@@ -1,7 +1,10 @@
---
-title: "Raspberry Pi"
+title: 'Raspberry Pi'
+parent: 'Installation'
---
+
+
# Raspberry Pi
## About Raspberry Pi
diff --git a/docs/documentation/sbom-guide.md b/docs/documentation/sbom-guide.md
index e6552a5f7..932bd6a5c 100644
--- a/docs/documentation/sbom-guide.md
+++ b/docs/documentation/sbom-guide.md
@@ -1,9 +1,13 @@
---
-title: "User Guide: AlmaLinux *Software Bill of Materials (SBOM)*"
+title: 'User Guide: AlmaLinux *Software Bill of Materials (SBOM)*'
+parent: 'Security Guides'
+grandparent: 'Documentation'
---
###### Last updated: 2024-10-28
+
+
# AlmaLinux SBOM User Guide
## About *SBOM*
diff --git a/docs/documentation/wsl.md b/docs/documentation/wsl.md
index 556c7c075..65a3cfb7d 100644
--- a/docs/documentation/wsl.md
+++ b/docs/documentation/wsl.md
@@ -1,7 +1,10 @@
---
-title: "AlmaLinux WSL"
+title: 'AlmaLinux WSL'
+parent: 'Installation'
---
+
+
# Windows Subsystem for Linux
## About WSL
diff --git a/docs/election2023.md b/docs/election2023.md
index b54888b6a..83aa00f23 100644
--- a/docs/election2023.md
+++ b/docs/election2023.md
@@ -1,6 +1,10 @@
---
title: 'Election 2023'
+parent: 'Foundation'
---
+
+
+
# AlmaLinux Board of Directors Election 2023
# 2023 - Election Results
diff --git a/docs/elevate/Changelog.md b/docs/elevate/Changelog.md
index e3b40d8f5..dacb7c18d 100644
--- a/docs/elevate/Changelog.md
+++ b/docs/elevate/Changelog.md
@@ -1,9 +1,13 @@
---
title: 'ELevate Changelog'
+parent: 'ELevate Project'
+grandparent: 'Migration'
---
###### last updated: 2025-01-08
+
+
# ELevate Changelog
**Note**, this changelog only includes updates made from 2024-09-24 onwards, and does not include any changes made prior to this date.
diff --git a/docs/elevate/Contribution-guide.md b/docs/elevate/Contribution-guide.md
index 18efcd7f1..8048e405a 100644
--- a/docs/elevate/Contribution-guide.md
+++ b/docs/elevate/Contribution-guide.md
@@ -1,9 +1,13 @@
---
title: 'ELevate Contribution Guide'
+parent: 'ELevate Project'
+grandparent: 'Migration'
---
###### last updated: 2024-12-10
+
+
# Contribute to the ELevate project
We welcome contributors to the ELevate project. You can help with:
diff --git a/docs/elevate/ELevate-NG-testing-guide.md b/docs/elevate/ELevate-NG-testing-guide.md
index 87f59753f..9f2345d71 100644
--- a/docs/elevate/ELevate-NG-testing-guide.md
+++ b/docs/elevate/ELevate-NG-testing-guide.md
@@ -1,9 +1,13 @@
---
-title: "ELevate NG Testing Guide"
+title: 'ELevate NG Testing Guide'
+parent: 'ELevate Project'
+grandparent: 'Migration'
---
###### last updated: 2024-12-19
+
+
# ELevate NG Testing Guide
::: warning
diff --git a/docs/elevate/ELevate-frequent-issues.md b/docs/elevate/ELevate-frequent-issues.md
index 30756c769..d88b06059 100644
--- a/docs/elevate/ELevate-frequent-issues.md
+++ b/docs/elevate/ELevate-frequent-issues.md
@@ -1,9 +1,13 @@
---
-title: ELevate Frequent Issues
+title: 'ELevate Frequent Issues'
+parent: 'ELevate Project'
+grandparent: 'Migration'
---
###### last updated: 2024-09-20
+
+
# ELevate Frequent Issues
These are the ELevate project issues the AlmaLinux team and community are currently working on together. You can find here the most frequent problems and guidance steps on how to solve them.
diff --git a/docs/elevate/ELevate-offline-guide.md b/docs/elevate/ELevate-offline-guide.md
index d71a130aa..737fc0fac 100644
--- a/docs/elevate/ELevate-offline-guide.md
+++ b/docs/elevate/ELevate-offline-guide.md
@@ -1,9 +1,13 @@
---
-title: "ELevate Offline Guide"
+title: 'ELevate Offline Guide'
+parent: 'ELevate Project'
+grandparent: 'Migration'
---
###### last updated: 2024-09-20
+
+
# ELevate Offline Guide
This guide describes steps to be performed to migrate an air-gapped machine that has no connection to the Internet but has network access to a private mirror. The process involves at least two hosts:
diff --git a/docs/elevate/ELevate-quickstart-guide.md b/docs/elevate/ELevate-quickstart-guide.md
index 67a17e523..f0d05fda6 100644
--- a/docs/elevate/ELevate-quickstart-guide.md
+++ b/docs/elevate/ELevate-quickstart-guide.md
@@ -1,9 +1,13 @@
---
-title: "ELevate Quickstart Guide"
+title: 'ELevate Quickstart Guide'
+parent: 'ELevate Project'
+grandparent: 'Migration'
---
###### last updated: 2024-12-10
+
+
# ELevate Quickstart Guide
::: warning
diff --git a/docs/elevate/ELevate-testing-guide.md b/docs/elevate/ELevate-testing-guide.md
index e1f561686..2392c0d13 100644
--- a/docs/elevate/ELevate-testing-guide.md
+++ b/docs/elevate/ELevate-testing-guide.md
@@ -1,9 +1,13 @@
---
-title: "ELevate Testing Guide"
+title: 'ELevate Testing Guide'
+parent: 'ELevate Project'
+grandparent: 'Migration'
---
###### last updated: 2024-12-10
+
+
# ELevate Testing Guide
::: warning
diff --git a/docs/elevate/ELevating-CentOS6-to-CentOS7.md b/docs/elevate/ELevating-CentOS6-to-CentOS7.md
index 2487f3125..aa471a40a 100644
--- a/docs/elevate/ELevating-CentOS6-to-CentOS7.md
+++ b/docs/elevate/ELevating-CentOS6-to-CentOS7.md
@@ -1,7 +1,11 @@
---
title: 'ELevating CentOS 6 to CentOS 7'
+parent: 'ELevate Project'
+grandparent: 'Migration'
---
+
+
| Experience Level | ⭐⭐☆☆☆ (Intermediate) |
|--------------------|---------------------- |
| Last modified date | 2024-04-16|
diff --git a/docs/elevate/ELevating-CentOS7-to-AlmaLinux-9.md b/docs/elevate/ELevating-CentOS7-to-AlmaLinux-9.md
index d024f3b73..3e9a853a2 100644
--- a/docs/elevate/ELevating-CentOS7-to-AlmaLinux-9.md
+++ b/docs/elevate/ELevating-CentOS7-to-AlmaLinux-9.md
@@ -1,9 +1,13 @@
---
-title: "ELevating CentOS 7 to AlmaLinux 9"
+title: 'ELevating CentOS 7 to AlmaLinux 9'
+parent: 'ELevate Project'
+grandparent: 'Migration'
---
###### last updated: 2024-11-14
+
+
# ELevating CentOS 7 to AlmaLinux 9
This guide contains steps on how to upgrade your CentOS 7 machine to AlmaLinux OS 9.
diff --git a/docs/elevate/README.md b/docs/elevate/README.md
index fcf8c0b5e..3ddfa68ec 100644
--- a/docs/elevate/README.md
+++ b/docs/elevate/README.md
@@ -1,9 +1,12 @@
---
-title: "About ELevate project"
+title: 'About ELevate project'
+parent: 'Migration'
---
###### last updated: 2024-12-10
+
+
# About the project
The ELevate project is an initiative to support upgrades between major versions of RHEL-derivatives.
diff --git a/docs/gsoc.md b/docs/gsoc.md
index dc43d7ef5..97219e74a 100644
--- a/docs/gsoc.md
+++ b/docs/gsoc.md
@@ -1,3 +1,10 @@
+---
+title: 'Google Summer of Code'
+parent: 'Foundation'
+---
+
+
+
# Google Summer of Code
AlmaLinux is proud to participate in Google's Summer of Code. Please find some details below regarding submitting proposals.
diff --git a/docs/installation/vagrant-boxes.md b/docs/installation/vagrant-boxes.md
index 9c7a79692..7140517c4 100644
--- a/docs/installation/vagrant-boxes.md
+++ b/docs/installation/vagrant-boxes.md
@@ -1,9 +1,12 @@
---
title: 'Vagrant Boxes'
+parent: 'Installation'
---
###### last updated: 2025-01-06
+
+
# Vagrant Boxes
AlmaLinux offers official AlmaLinux OS images for Vagrant Boxes. Images are delivered by the AlmaLinux [Cloud SIG](https://wiki.almalinux.org/sigs/Cloud.html).
diff --git a/docs/release-notes/10.0-beta.md b/docs/release-notes/10.0-beta.md
index 3736e0575..cb3ed4f05 100644
--- a/docs/release-notes/10.0-beta.md
+++ b/docs/release-notes/10.0-beta.md
@@ -1,9 +1,12 @@
---
title: '10.0 Beta'
+parent: 'Release Notes'
---
###### last updated: 2024-12-10
+
+
# AlmaLinux 10.0 Beta Release Notes
These are the release notes for AlmaLinux OS 10.0 Beta for all supported architectures:
diff --git a/docs/release-notes/8.10-beta.md b/docs/release-notes/8.10-beta.md
index 10dc877e7..2710108d6 100644
--- a/docs/release-notes/8.10-beta.md
+++ b/docs/release-notes/8.10-beta.md
@@ -1,9 +1,14 @@
---
title: '8.10 Beta'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 8 betas'
---
###### last updated: 2024-04-17
+
+
# AlmaLinux 8.10 Beta Release Notes
These are the release notes for AlmaLinux OS 8.10 Beta for all supported architectures:
diff --git a/docs/release-notes/8.10.md b/docs/release-notes/8.10.md
index a092f3e93..73ff8e680 100644
--- a/docs/release-notes/8.10.md
+++ b/docs/release-notes/8.10.md
@@ -1,7 +1,12 @@
---
title: '8.10'
+parent: 'Release Notes'
---
+
###### last updated: 2024-05-27
+
+
+
# AlmaLinux 8.10 Release Notes
These are the release notes for AlmaLinux OS 8.10 Stable for all supported architectures:
diff --git a/docs/release-notes/8.3-beta.md b/docs/release-notes/8.3-beta.md
index 97f90ca8f..daf395715 100644
--- a/docs/release-notes/8.3-beta.md
+++ b/docs/release-notes/8.3-beta.md
@@ -1,6 +1,12 @@
---
title: '8.3 Beta'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 8 betas'
---
+
+
+
# AlmaLinux 8.3 Beta release notes
The release code name: Purple [Manul](https://en.wikipedia.org/wiki/Pallas%27s_cat).
diff --git a/docs/release-notes/8.3-rc.md b/docs/release-notes/8.3-rc.md
index bb6a0a5b2..8b8b067ec 100644
--- a/docs/release-notes/8.3-rc.md
+++ b/docs/release-notes/8.3-rc.md
@@ -1,6 +1,12 @@
---
title: '8.3 RC'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 8 betas'
---
+
+
+
# AlmaLinux 8.3 RC release notes
Distributed kernel version: 4.18.0-240.
diff --git a/docs/release-notes/8.3.md b/docs/release-notes/8.3.md
index b472d2bf2..26d96ae65 100644
--- a/docs/release-notes/8.3.md
+++ b/docs/release-notes/8.3.md
@@ -1,6 +1,11 @@
---
title: '8.3'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
---
+
+
+
# AlmaLinux 8.3 release notes
Distributed kernel version: 4.18.0-240.
diff --git a/docs/release-notes/8.4-arm.md b/docs/release-notes/8.4-arm.md
index ea6171204..cd10c273c 100644
--- a/docs/release-notes/8.4-arm.md
+++ b/docs/release-notes/8.4-arm.md
@@ -1,6 +1,11 @@
---
title: '8.4 for ARM'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
---
+
+
+
# AlmaLinux 8.4 for ARM Release Notes
Distributed kernel version: 4.18.0-305.
diff --git a/docs/release-notes/8.4-beta-arm.md b/docs/release-notes/8.4-beta-arm.md
index e44c05562..909f2b3d3 100644
--- a/docs/release-notes/8.4-beta-arm.md
+++ b/docs/release-notes/8.4-beta-arm.md
@@ -1,6 +1,12 @@
---
title: '8.4 Beta for ARM'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 8 betas'
---
+
+
+
# AlmaLinux 8.4 Beta for ARM Release Notes
## Beta Release
diff --git a/docs/release-notes/8.4-beta.md b/docs/release-notes/8.4-beta.md
index 53b79d1d5..2f9c0a8bc 100644
--- a/docs/release-notes/8.4-beta.md
+++ b/docs/release-notes/8.4-beta.md
@@ -1,6 +1,12 @@
---
title: '8.4 Beta'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 8 betas'
---
+
+
+
# AlmaLinux 8.4 Beta Release Notes
## Beta Release
diff --git a/docs/release-notes/8.4.md b/docs/release-notes/8.4.md
index be40d57ae..66b60fad6 100644
--- a/docs/release-notes/8.4.md
+++ b/docs/release-notes/8.4.md
@@ -1,6 +1,11 @@
---
title: '8.4'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
---
+
+
+
# AlmaLinux 8.4 Release Notes
Distributed kernel version: 4.18.0-305.
diff --git a/docs/release-notes/8.5-beta-ppc.md b/docs/release-notes/8.5-beta-ppc.md
index 485d959ac..91e3aaea8 100644
--- a/docs/release-notes/8.5-beta-ppc.md
+++ b/docs/release-notes/8.5-beta-ppc.md
@@ -1,7 +1,12 @@
---
title: '8.5 Beta for PowerPC'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 8 betas'
---
+
+
# AlmaLinux 8.5 beta for PowerPC Release Notes
## Beta Release
diff --git a/docs/release-notes/8.5-beta.md b/docs/release-notes/8.5-beta.md
index 02e6cfadd..f2e958145 100644
--- a/docs/release-notes/8.5-beta.md
+++ b/docs/release-notes/8.5-beta.md
@@ -1,6 +1,12 @@
---
title: '8.5 Beta'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 8 betas'
---
+
+
+
# AlmaLinux 8.5 Beta Release Notes
These are the release notes for AlmaLinux OS 8.5 Beta for both x86_64 and ARM architectures, codename Arctic Sphynx.
diff --git a/docs/release-notes/8.5-ppc.md b/docs/release-notes/8.5-ppc.md
index a62626330..12500dabf 100644
--- a/docs/release-notes/8.5-ppc.md
+++ b/docs/release-notes/8.5-ppc.md
@@ -1,7 +1,11 @@
---
title: '8.5 for PowerPC'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
---
+
+
# AlmaLinux 8.5 for PowerPC Release Notes
These are the release notes for AlmaLinux OS 8.5 Stable for ppc64le.
diff --git a/docs/release-notes/8.5.md b/docs/release-notes/8.5.md
index e8ab796ba..5e31ec800 100644
--- a/docs/release-notes/8.5.md
+++ b/docs/release-notes/8.5.md
@@ -1,9 +1,12 @@
---
title: '8.5'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
---
-# AlmaLinux 8.5 Release Notes
+
+# AlmaLinux 8.5 Release Notes
Thank you for downloading AlmaLinux OS. These are the release notes for AlmaLinux OS 8.5 Stable for both the x86_64 and ARM architectures, codename Arctic Sphynx.
Distributed kernel version: 4.18.0-348.
diff --git a/docs/release-notes/8.6-beta.md b/docs/release-notes/8.6-beta.md
index 06f9e7a56..6b38d7281 100644
--- a/docs/release-notes/8.6-beta.md
+++ b/docs/release-notes/8.6-beta.md
@@ -1,7 +1,12 @@
---
title: '8.6 Beta'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 8 betas'
---
+
+
# AlmaLinux 8.6 Beta Release Notes
These are the release notes for AlmaLinux OS 8.6 Beta for x86_64, aarch64 and ppc64le architectures, codename Sky Tiger.
diff --git a/docs/release-notes/8.6.md b/docs/release-notes/8.6.md
index 6fb1716f6..b1f11627c 100644
--- a/docs/release-notes/8.6.md
+++ b/docs/release-notes/8.6.md
@@ -1,7 +1,11 @@
---
title: '8.6'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
---
+
+
# AlmaLinux 8.6 Release Notes
These are the release notes for AlmaLinux OS 8.6 Stable for all supported architectures:
diff --git a/docs/release-notes/8.7-beta.md b/docs/release-notes/8.7-beta.md
index 7cd7d43de..a36ef3ae3 100644
--- a/docs/release-notes/8.7-beta.md
+++ b/docs/release-notes/8.7-beta.md
@@ -1,7 +1,12 @@
---
title: '8.7 Beta'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 8 betas'
---
+
+
# AlmaLinux 8.7 Beta Release Notes
These are the release notes for AlmaLinux OS 8.7 Beta for x86_64, aarch64, ppc64le and s390x architectures, codename Stone Smilodon.
diff --git a/docs/release-notes/8.7.md b/docs/release-notes/8.7.md
index 5a580b691..514437791 100644
--- a/docs/release-notes/8.7.md
+++ b/docs/release-notes/8.7.md
@@ -1,7 +1,11 @@
---
title: '8.7'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
---
+
+
# AlmaLinux 8.7 Release Notes
These are the release notes for AlmaLinux OS 8.7 Stable for all supported architectures:
diff --git a/docs/release-notes/8.8-beta.md b/docs/release-notes/8.8-beta.md
index f606734d6..245dfde1e 100644
--- a/docs/release-notes/8.8-beta.md
+++ b/docs/release-notes/8.8-beta.md
@@ -1,7 +1,12 @@
---
title: '8.8 Beta'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 8 betas'
---
+
+
# AlmaLinux 8.8 Beta Release Notes
These are the release notes for AlmaLinux OS 8.8 Beta for all supported architectures:
diff --git a/docs/release-notes/8.8.md b/docs/release-notes/8.8.md
index 4c790eac0..e627f0394 100644
--- a/docs/release-notes/8.8.md
+++ b/docs/release-notes/8.8.md
@@ -1,7 +1,11 @@
---
title: '8.8'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
---
+
+
# AlmaLinux 8.8 Release Notes
These are the release notes for AlmaLinux OS 8.8 Stable for all supported architectures:
diff --git a/docs/release-notes/8.9-beta.md b/docs/release-notes/8.9-beta.md
index d173379b7..ef0028ef3 100644
--- a/docs/release-notes/8.9-beta.md
+++ b/docs/release-notes/8.9-beta.md
@@ -1,7 +1,12 @@
---
title: '8.9 Beta'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 8 betas'
---
+
+
# AlmaLinux 8.9 Beta Release Notes
These are the release notes for AlmaLinux OS 8.9 Beta for all supported architectures:
diff --git a/docs/release-notes/8.9.md b/docs/release-notes/8.9.md
index 4d6abde9c..5237f2b10 100644
--- a/docs/release-notes/8.9.md
+++ b/docs/release-notes/8.9.md
@@ -1,7 +1,11 @@
---
title: '8.9'
+parent: 'Older AlmaLinux 8 releases'
+grandparent: 'Release Notes'
---
+
+
# AlmaLinux 8.9 Release Notes
These are the release notes for AlmaLinux OS 8.9 Stable for all supported architectures:
diff --git a/docs/release-notes/9.0-beta.md b/docs/release-notes/9.0-beta.md
index 52508a86b..142a66b9e 100644
--- a/docs/release-notes/9.0-beta.md
+++ b/docs/release-notes/9.0-beta.md
@@ -1,7 +1,12 @@
---
title: '9.0 Beta'
+parent: 'Older AlmaLinux 9 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 9 betas'
---
+
+
# AlmaLinux 9.0 Beta Release Notes
These are the release notes for AlmaLinux OS 9.0 Beta for x86_64, aarch64, ppc64le and s390x architectures, codename Emerald Puma.
diff --git a/docs/release-notes/9.0.md b/docs/release-notes/9.0.md
index af32436b2..55ed4c7ae 100644
--- a/docs/release-notes/9.0.md
+++ b/docs/release-notes/9.0.md
@@ -1,7 +1,11 @@
---
title: '9.0'
+parent: 'Older AlmaLinux 9 releases'
+grandparent: 'Release Notes'
---
+
+
# AlmaLinux 9.0 Release Notes
These are the release notes for AlmaLinux OS 9.0 for x86_64, aarch64, ppc64le and s390x architectures, codename Emerald Puma.
diff --git a/docs/release-notes/9.1-beta.md b/docs/release-notes/9.1-beta.md
index a3f5f1159..c8d540ba4 100644
--- a/docs/release-notes/9.1-beta.md
+++ b/docs/release-notes/9.1-beta.md
@@ -1,7 +1,11 @@
---
title: '9.1 Beta'
+parent: 'Older AlmaLinux 9 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 9 betas'
---
+
# AlmaLinux 9.1 Beta Release Notes
These are the release notes for AlmaLinux OS 9.1 Beta for x86_64, aarch64, ppc64le and s390x architectures, codename Lime Lynx.
diff --git a/docs/release-notes/9.1.md b/docs/release-notes/9.1.md
index ae662c177..2d60702b3 100644
--- a/docs/release-notes/9.1.md
+++ b/docs/release-notes/9.1.md
@@ -1,7 +1,11 @@
---
title: '9.1'
+parent: 'Older AlmaLinux 9 releases'
+grandparent: 'Release Notes'
---
+
+
# AlmaLinux 9.1 Release Notes
These are the release notes for AlmaLinux OS 9.1 Stable for all supported architectures:
diff --git a/docs/release-notes/9.2-beta.md b/docs/release-notes/9.2-beta.md
index 302885701..eb39745dc 100644
--- a/docs/release-notes/9.2-beta.md
+++ b/docs/release-notes/9.2-beta.md
@@ -1,7 +1,12 @@
---
title: '9.2 Beta'
+parent: 'Older AlmaLinux 9 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 9 betas'
---
+
+
# AlmaLinux 9.2 Beta Release Notes
These are the release notes for AlmaLinux OS 9.2 Beta for all supported architectures:
diff --git a/docs/release-notes/9.2.md b/docs/release-notes/9.2.md
index 36d54fb73..fffa16657 100644
--- a/docs/release-notes/9.2.md
+++ b/docs/release-notes/9.2.md
@@ -1,7 +1,11 @@
---
title: '9.2'
+parent: 'Older AlmaLinux 9 releases'
+grandparent: 'Release Notes'
---
+
+
# AlmaLinux 9.2 Release Notes
These are the release notes for AlmaLinux OS 9.2 Stable for all supported architectures:
diff --git a/docs/release-notes/9.3-beta.md b/docs/release-notes/9.3-beta.md
index f7fb7eb92..1db6fa09b 100644
--- a/docs/release-notes/9.3-beta.md
+++ b/docs/release-notes/9.3-beta.md
@@ -1,7 +1,12 @@
---
title: '9.3 Beta'
+parent: 'Older AlmaLinux 9 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 9 betas'
---
+
+
# AlmaLinux 9.3 Beta Release Notes
These are the release notes for AlmaLinux OS 9.3 Beta for all supported architectures:
diff --git a/docs/release-notes/9.3.md b/docs/release-notes/9.3.md
index dbede745b..6c0cb1dd4 100644
--- a/docs/release-notes/9.3.md
+++ b/docs/release-notes/9.3.md
@@ -1,7 +1,11 @@
---
title: '9.3'
+parent: 'Older AlmaLinux 9 releases'
+grandparent: 'Release Notes'
---
+
+
# AlmaLinux 9.3 Release Notes
These are the release notes for AlmaLinux OS 9.3 Stable for all supported architectures:
diff --git a/docs/release-notes/9.4-beta.md b/docs/release-notes/9.4-beta.md
index f8ba8a7ed..80cf5cf03 100644
--- a/docs/release-notes/9.4-beta.md
+++ b/docs/release-notes/9.4-beta.md
@@ -1,9 +1,14 @@
---
title: '9.4 Beta'
+parent: 'Older AlmaLinux 9 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 9 betas'
---
###### last updated: 2024-04-15
+
+
# AlmaLinux 9.4 Beta Release Notes
These are the release notes for AlmaLinux OS 9.4 Beta for all supported architectures:
diff --git a/docs/release-notes/9.4.md b/docs/release-notes/9.4.md
index b37ee3f77..2a2b6930b 100644
--- a/docs/release-notes/9.4.md
+++ b/docs/release-notes/9.4.md
@@ -1,9 +1,13 @@
---
title: '9.4'
+parent: 'Older AlmaLinux 9 releases'
+grandparent: 'Release Notes'
---
###### last updated: 2024-05-06
+
+
# AlmaLinux 9.4 Release Notes
These are the release notes for AlmaLinux OS 9.4 Stable for all supported architectures:
diff --git a/docs/release-notes/9.5-beta.md b/docs/release-notes/9.5-beta.md
index b7c099851..22b36ee64 100644
--- a/docs/release-notes/9.5-beta.md
+++ b/docs/release-notes/9.5-beta.md
@@ -1,9 +1,14 @@
---
title: '9.5 Beta'
+parent: 'Older AlmaLinux 9 releases'
+grandparent: 'Release Notes'
+child: 'AlmaLinux 9 betas'
---
###### last updated: 2024-11-27
+
+
# AlmaLinux 9.5 Beta Release Notes
These are the release notes for AlmaLinux OS 9.5 Beta for all supported architectures:
diff --git a/docs/release-notes/9.5.md b/docs/release-notes/9.5.md
index 51f1f0a8f..088da3e83 100644
--- a/docs/release-notes/9.5.md
+++ b/docs/release-notes/9.5.md
@@ -1,9 +1,12 @@
---
title: '9.5'
+parent: 'Release Notes'
---
###### last updated: 2024-11-27
+
+
# AlmaLinux 9.5 Release Notes
These are the release notes for AlmaLinux OS 9.5 for all supported architectures:
diff --git a/docs/release-notes/kitten-10.md b/docs/release-notes/kitten-10.md
index edb235de4..90eb02f50 100644
--- a/docs/release-notes/kitten-10.md
+++ b/docs/release-notes/kitten-10.md
@@ -1,9 +1,12 @@
---
title: 'Kitten 10'
+parent: 'Release Notes'
---
###### last updated: 2025-01-06
+
+
# AlmaLinux OS Kitten 10 Release Notes
###### Note: Our kitten is not related to [this one](https://www.sandia.gov/ccr/software/kitten-lightweight-kernel/) :D
diff --git a/docs/repos/AlmaLinux.md b/docs/repos/AlmaLinux.md
index 2dae29d70..dfd953e1a 100644
--- a/docs/repos/AlmaLinux.md
+++ b/docs/repos/AlmaLinux.md
@@ -1,6 +1,11 @@
---
title: 'AlmaLinux Repositories'
+parent: 'Repositories'
+grandparent: 'Installation'
---
+
+
+
# AlmaLinux Repositories
Information about the main AlmaLinux repositories and how to install them can be found on this page.
diff --git a/docs/repos/CentOS.md b/docs/repos/CentOS.md
index 82c1980d6..f453702c6 100644
--- a/docs/repos/CentOS.md
+++ b/docs/repos/CentOS.md
@@ -1,9 +1,13 @@
---
title: 'CentOS SIGs Repositories'
+parent: 'Repositories'
+grandparent: 'Installation'
---
###### last modified: 2024-06-12
+
+
# CentOS SIGs Repositories
CentOS Special Interest Groups (SIGs) are smaller groups within the CentOS community that focus on a small set of issues, in order to either create awareness or to focus on development along a specific topic. SIGs are often very popular and used quite frequently by the community. AlmaLinux has decided to make upstream CentOS SIGs usable from within AlmaLinux for the community's benefit. We encourage contributors interested in SIG development to work upstream and submit contributions there.
diff --git a/docs/repos/Extras.md b/docs/repos/Extras.md
index f2aa6bfb2..e389e1ba3 100644
--- a/docs/repos/Extras.md
+++ b/docs/repos/Extras.md
@@ -1,6 +1,11 @@
---
title: 'Extra Repositories'
+parent: 'Repositories'
+grandparent: 'Installation'
---
+
+
+
# Extra Repositories
## EPEL
diff --git a/docs/repos/README.md b/docs/repos/README.md
index 21937401f..5565e6e3c 100644
--- a/docs/repos/README.md
+++ b/docs/repos/README.md
@@ -1,7 +1,10 @@
---
-title: "Repositories"
+title: 'Repositories'
+parent: 'Installation'
---
+
+
# Repositories
A repository stores software packages on a remote server that are used for installing and updating on Linux systems.
diff --git a/docs/repos/Synergy.md b/docs/repos/Synergy.md
index 513bdbcfe..5b780009a 100644
--- a/docs/repos/Synergy.md
+++ b/docs/repos/Synergy.md
@@ -1,7 +1,11 @@
---
-title: "Synergy Repository"
+title: 'Synergy Repository'
+parent: 'Repositories'
+grandparent: 'Installation'
---
+
+
# Synergy Repository
## About
diff --git a/docs/series/LAMP-server.md b/docs/series/LAMP-server.md
index 58d25fc14..2976ebf58 100644
--- a/docs/series/LAMP-server.md
+++ b/docs/series/LAMP-server.md
@@ -1,7 +1,11 @@
---
title: 'Deploy a LAMP server'
+parent: 'Howto Series'
+grandparent: 'Documentation'
---
+
+
# Deploy a LAMP server
| Experience Level | ⭑⭑ |
@@ -241,4 +245,4 @@ It's widely favored by developers for its flexibility and performance, seamlessl
* **Results:**
You should get a similar result:
- 
\ No newline at end of file
+ 
diff --git a/docs/series/README.md b/docs/series/README.md
index 56e9b25bd..c3e4a9ca1 100644
--- a/docs/series/README.md
+++ b/docs/series/README.md
@@ -1,3 +1,10 @@
+---
+title: 'Howto Series: AlmaLinux Tutorials'
+parent: 'Documentation'
+---
+
+
+
# Howto Series: AlmaLinux Tutorials 🚀
Welcome to our Howto series on AlmaLinux! In this series, we provide comprehensive guides and tutorials to help you learn and master various aspects of AlmaLinux. Whether you are interested in Nginx or system-related topics, we've got you covered.
diff --git a/docs/series/nginx/NginxSeriesA01.md b/docs/series/nginx/NginxSeriesA01.md
index 7a508d6cc..6efc3fe79 100644
--- a/docs/series/nginx/NginxSeriesA01.md
+++ b/docs/series/nginx/NginxSeriesA01.md
@@ -1,3 +1,12 @@
+---
+title: 'A Beginner Guide'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'Nginx Series'
+---
+
+
+
# A01 ❯ A Beginner's Guide
ℹ️ This article is part of AlmaLinux [Nginx Series](/series/).
diff --git a/docs/series/nginx/NginxSeriesA02R8.md b/docs/series/nginx/NginxSeriesA02R8.md
index 0c9f48915..3cb5287df 100644
--- a/docs/series/nginx/NginxSeriesA02R8.md
+++ b/docs/series/nginx/NginxSeriesA02R8.md
@@ -1,3 +1,12 @@
+---
+title: 'AlmaLinux 8.x Installation'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'Nginx Series'
+---
+
+
+
# A02 R8 ❯ AlmaLinux 8.x Installation
ℹ️ This article is part of AlmaLinux [Nginx Series](/series/).
diff --git a/docs/series/nginx/NginxSeriesA02R91.md b/docs/series/nginx/NginxSeriesA02R91.md
index b8289897b..f28d62477 100644
--- a/docs/series/nginx/NginxSeriesA02R91.md
+++ b/docs/series/nginx/NginxSeriesA02R91.md
@@ -1,3 +1,12 @@
+---
+title: 'AlmaLinux 9.1 Installation'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'Nginx Series'
+---
+
+
+
# A02 R91 ❯ AlmaLinux 9.1 Installation
ℹ️ This article is part of AlmaLinux [Nginx Series](/series/).
diff --git a/docs/series/nginx/NginxSeriesA02R92.md b/docs/series/nginx/NginxSeriesA02R92.md
index 726da38ac..3924c1343 100644
--- a/docs/series/nginx/NginxSeriesA02R92.md
+++ b/docs/series/nginx/NginxSeriesA02R92.md
@@ -1,3 +1,12 @@
+---
+title: 'AlmaLinux 9.2 Installation'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'Nginx Series'
+---
+
+
+
# A02 R92 ❯ AlmaLinux 9.2 Installation
ℹ️ This article is part of AlmaLinux [Nginx Series](/series/).
diff --git a/docs/series/nginx/NginxSeriesA03.md b/docs/series/nginx/NginxSeriesA03.md
index 5810f158e..e1a80c61c 100644
--- a/docs/series/nginx/NginxSeriesA03.md
+++ b/docs/series/nginx/NginxSeriesA03.md
@@ -1,3 +1,12 @@
+---
+title: 'Default Configuration Guide'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'Nginx Series'
+---
+
+
+
# A03 ❯ Default Configuration Guide
ℹ️ This article is part of AlmaLinux [Nginx Series](/series/).
diff --git a/docs/series/nginx/NginxSeriesA04P1.md b/docs/series/nginx/NginxSeriesA04P1.md
index 58a6b97c9..dac15b68c 100644
--- a/docs/series/nginx/NginxSeriesA04P1.md
+++ b/docs/series/nginx/NginxSeriesA04P1.md
@@ -1,3 +1,12 @@
+---
+title: 'Secure Nginx Deployment'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'Nginx Series'
+---
+
+
+
# A04 ❯ Secure Nginx Deployment
ℹ️ This article is part of AlmaLinux [Nginx Series](/series/).
diff --git a/docs/series/nginx/README.md b/docs/series/nginx/README.md
index 0455ca642..93b518466 100644
--- a/docs/series/nginx/README.md
+++ b/docs/series/nginx/README.md
@@ -1,3 +1,11 @@
+---
+title: 'AlmaLinux Nginx Series'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+---
+
+
+
# AlmaLinux Nginx Series
Welcome!
diff --git a/docs/series/system/README.md b/docs/series/system/README.md
index 937100992..abc4108a4 100644
--- a/docs/series/system/README.md
+++ b/docs/series/system/README.md
@@ -1,3 +1,11 @@
+---
+title: 'AlmaLinux System Series'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+---
+
+
+
# AlmaLinux System Series
Welcome!
diff --git a/docs/series/system/SystemSeriesA01.md b/docs/series/system/SystemSeriesA01.md
index f06c6f0cc..0109a0226 100644
--- a/docs/series/system/SystemSeriesA01.md
+++ b/docs/series/system/SystemSeriesA01.md
@@ -1,3 +1,12 @@
+---
+title: 'Application Streams'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'System Series'
+---
+
+
+
# A01 ❯ Application Streams
ℹ️ This article is part of AlmaLinux [System Series](/series/).
diff --git a/docs/series/system/SystemSeriesA02.md b/docs/series/system/SystemSeriesA02.md
index 7eb79084b..7e74e8635 100644
--- a/docs/series/system/SystemSeriesA02.md
+++ b/docs/series/system/SystemSeriesA02.md
@@ -1,3 +1,12 @@
+---
+title: 'Firewalld: A Beginner Guide'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'System Series'
+---
+
+
+
# A02 ❯ Firewalld: A Beginner's Guide
ℹ️ This article is part of AlmaLinux [System Series](/series/).
diff --git a/docs/series/system/SystemSeriesA03.md b/docs/series/system/SystemSeriesA03.md
index c48467d26..0ea90195a 100644
--- a/docs/series/system/SystemSeriesA03.md
+++ b/docs/series/system/SystemSeriesA03.md
@@ -1,3 +1,12 @@
+---
+title: 'NVIDIA Driver Installation Guide'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'System Series'
+---
+
+
+
# A03 ❯ NVIDIA Driver Installation Guide
ℹ️ This article is part of AlmaLinux [System Series](/series/).
diff --git a/docs/series/system/SystemSeriesA03R8.md b/docs/series/system/SystemSeriesA03R8.md
index 978478d9a..577ad304d 100644
--- a/docs/series/system/SystemSeriesA03R8.md
+++ b/docs/series/system/SystemSeriesA03R8.md
@@ -1,3 +1,12 @@
+---
+title: 'NVIDIA: Installation on 8.x'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'System Series'
+---
+
+
+
# A03 R8 ❯ NVIDIA: Installation on 8.x
ℹ️ This article is part of AlmaLinux [System Series](/series/).
diff --git a/docs/series/system/SystemSeriesA03R9.md b/docs/series/system/SystemSeriesA03R9.md
index 31162e6f5..958f09d1a 100644
--- a/docs/series/system/SystemSeriesA03R9.md
+++ b/docs/series/system/SystemSeriesA03R9.md
@@ -1,3 +1,12 @@
+---
+title: 'NVIDIA: Installation on 9.x'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'System Series'
+---
+
+
+
# A03 R9 ❯ NVIDIA: Installation on 9.x
ℹ️ This article is part of AlmaLinux [System Series](/series/).
diff --git a/docs/series/system/SystemSeriesA04.md b/docs/series/system/SystemSeriesA04.md
index 2cdacf547..61fdf53a5 100644
--- a/docs/series/system/SystemSeriesA04.md
+++ b/docs/series/system/SystemSeriesA04.md
@@ -1,3 +1,12 @@
+---
+title: 'Snapd Installation Guide'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'System Series'
+---
+
+
+
# A04 ❯ Snapd Installation Guide
ℹ️ This article is part of AlmaLinux [System Series](/series/).
diff --git a/docs/series/system/SystemSeriesA05.md b/docs/series/system/SystemSeriesA05.md
index a920561e9..d63cf3339 100644
--- a/docs/series/system/SystemSeriesA05.md
+++ b/docs/series/system/SystemSeriesA05.md
@@ -1,3 +1,12 @@
+---
+title: 'Multimedia Codecs Installation Guide'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'System Series'
+---
+
+
+
# A05 ❯ Multimedia Codecs Installation Guide
ℹ️ This article is part of AlmaLinux [System Series](/series/).
diff --git a/docs/series/system/SystemSeriesA06.md b/docs/series/system/SystemSeriesA06.md
index 44fb87e22..5cbbcce4a 100644
--- a/docs/series/system/SystemSeriesA06.md
+++ b/docs/series/system/SystemSeriesA06.md
@@ -1,3 +1,12 @@
+---
+title: 'Multimedia Codecs & Libraries for VFX Workstation Installation Guide'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'System Series'
+---
+
+
+
# A06 ❯ Multimedia Codecs & Libraries for VFX Workstation Installation Guide
ℹ️ This article is part of AlmaLinux [System Series](/series/).
diff --git a/docs/series/system/SystemSeriesA07.md b/docs/series/system/SystemSeriesA07.md
index b9b09aa2c..6ae6d380c 100644
--- a/docs/series/system/SystemSeriesA07.md
+++ b/docs/series/system/SystemSeriesA07.md
@@ -1,3 +1,12 @@
+---
+title: 'Change from Wayland to Xorg Installation Guide'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'System Series'
+---
+
+
+
# A07 ❯ Change from Wayland to Xorg Installation Guide
ℹ️ This article is part of AlmaLinux [System Series](/series/).
diff --git a/docs/series/system/SystemSeriesA08.md b/docs/series/system/SystemSeriesA08.md
index 533365280..114bad33b 100644
--- a/docs/series/system/SystemSeriesA08.md
+++ b/docs/series/system/SystemSeriesA08.md
@@ -1,3 +1,12 @@
+---
+title: 'Earlyoom (Out of Memory) Installation Guide'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'System Series'
+---
+
+
+
# A08 ❯ Earlyoom (Out of Memory) Installation Guide
ℹ️ This article is part of AlmaLinux [System Series](/series/).
diff --git a/docs/series/system/SystemSeriesA09.md b/docs/series/system/SystemSeriesA09.md
index 9ba660f9f..3b46818fe 100644
--- a/docs/series/system/SystemSeriesA09.md
+++ b/docs/series/system/SystemSeriesA09.md
@@ -1,3 +1,12 @@
+---
+title: 'Journalctl Persistent Installation Guide'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'System Series'
+---
+
+
+
# A09 ❯ Journalctl Persistent Installation Guide
ℹ️ This article is part of AlmaLinux [System Series](/series/).
diff --git a/docs/series/system/SystemSeriesA10.md b/docs/series/system/SystemSeriesA10.md
index 79792d2d6..d4d35d797 100644
--- a/docs/series/system/SystemSeriesA10.md
+++ b/docs/series/system/SystemSeriesA10.md
@@ -1,3 +1,12 @@
+---
+title: 'Chrony Installation Guide'
+parent: 'Howto Series'
+grandparent: 'Documentation'
+child: 'System Series'
+---
+
+
+
# A10 ❯ Chrony Installation Guide
ℹ️ This article is part of AlmaLinux [System Series](/series/).
diff --git a/docs/sigs/Build-System.md b/docs/sigs/Build-System.md
index ce1c4f1a1..2cf9c4de7 100644
--- a/docs/sigs/Build-System.md
+++ b/docs/sigs/Build-System.md
@@ -1,9 +1,13 @@
---
title: 'Build System SIG'
+parent: 'Special interest groups (SIGs)'
+grandparent: 'Contribute'
---
##### last modified: 2024-10-28
+
+
# Build System SIG
The Build System Team is responsible for automating processes of building distribution and packages, testing packages, signing packages, and releasing them to public repositories.
diff --git a/docs/sigs/Certification.md b/docs/sigs/Certification.md
index 5f5e90535..913ca3515 100644
--- a/docs/sigs/Certification.md
+++ b/docs/sigs/Certification.md
@@ -1,6 +1,11 @@
---
-title: "Certification SIG"
+title: 'Certification SIG'
+parent: 'Special interest groups (SIGs)'
+grandparent: 'Contribute'
---
+
+
+
# Certification SIG
The Certification SIG is focused on creating and maintaining standards and procedures related to hardware and software certification for AlmaLinux OS.
diff --git a/docs/sigs/Cloud.md b/docs/sigs/Cloud.md
index 4716e466e..3ff464c2f 100644
--- a/docs/sigs/Cloud.md
+++ b/docs/sigs/Cloud.md
@@ -1,8 +1,11 @@
---
-title: "Cloud SIG"
+title: 'Cloud SIG'
+parent: 'Special interest groups (SIGs)'
+grandparent: 'Contribute'
---
-
###### last updated: 2025-01-06
+
+
# Cloud SIG
diff --git a/docs/sigs/Core.md b/docs/sigs/Core.md
index a0078134a..128aabd3d 100644
--- a/docs/sigs/Core.md
+++ b/docs/sigs/Core.md
@@ -1,8 +1,12 @@
---
-title: "Core SIG"
+title: 'Core SIG'
+parent: 'Special interest groups (SIGs)'
+grandparent: 'Contribute'
---
-######last updated: 2024-04-22
+###### last updated: 2024-04-22
+
+
# Core SIG
diff --git a/docs/sigs/HPCandAI.md b/docs/sigs/HPCandAI.md
index 8613c7f1f..34718d2aa 100644
--- a/docs/sigs/HPCandAI.md
+++ b/docs/sigs/HPCandAI.md
@@ -1,6 +1,11 @@
---
-title: "HPC and AI SIG"
+title: 'HPC and AI SIG'
+parent: 'Special interest groups (SIGs)'
+grandparent: 'Contribute'
---
+
+
+
# HPC and AI SIG
AlmaLinux is the ideal Linux choice for HPC and AI applications, and the HPC and AI SIG is here to help you make the most of it. We are a group of HPC and AI experts who use AlmaLinux to power our projects and share our knowledge with the AlmaLinux community. We promote the benefits of AlmaLinux for HPC and AI, provide guidance and support for AlmaLinux users in HPC and AI, and represent the interests and needs of the HPC and AI community within AlmaLinux. Join us today and discover how AlmaLinux can boost your HPC and AI performance and productivity.
diff --git a/docs/sigs/Infrastructure.md b/docs/sigs/Infrastructure.md
index 6d0d3382d..8e0eb948e 100644
--- a/docs/sigs/Infrastructure.md
+++ b/docs/sigs/Infrastructure.md
@@ -1,6 +1,11 @@
---
-title: "Infrastructure SIG"
+title: 'Infrastructure SIG'
+parent: 'Special interest groups (SIGs)'
+grandparent: 'Contribute'
---
+
+
+
# Infrastructure SIG
The infrastructure team is responsible for maintaining the servers and services that keep AlmaLinux online and accessible to end users.
diff --git a/docs/sigs/LiveMedia.md b/docs/sigs/LiveMedia.md
index 721fef823..3e8a935a5 100644
--- a/docs/sigs/LiveMedia.md
+++ b/docs/sigs/LiveMedia.md
@@ -1,6 +1,11 @@
---
-title: "Live Media SIG"
+title: 'Live Media SIG'
+parent: 'Special interest groups (SIGs)'
+grandparent: 'Contribute'
---
+
+
+
# Live Media SIG
The Live Media Team is responsible for AlmaLinux OS Live Media.
diff --git a/docs/sigs/Marketing.md b/docs/sigs/Marketing.md
index 8b1bd9c2a..ebc58206a 100644
--- a/docs/sigs/Marketing.md
+++ b/docs/sigs/Marketing.md
@@ -1,6 +1,11 @@
---
-title: "Marketing SIG"
+title: 'Marketing SIG'
+parent: 'Special interest groups (SIGs)'
+grandparent: 'Contribute'
---
+
+
+
# Marketing SIG
The Marketing team is responsible for AlmaLinux marketing and outreach efforts. Marketing is often an overlooked or eschewed term in open source, but without marketing efforts it's a whole lot harder for your audience to find you. We try to make it easy for the users who need a free enterprise linux distribution to find us.
diff --git a/docs/sigs/Migration.md b/docs/sigs/Migration.md
index d26da00b9..fbe4decf0 100644
--- a/docs/sigs/Migration.md
+++ b/docs/sigs/Migration.md
@@ -1,9 +1,13 @@
---
-title: "Migration SIG"
+title: 'Migration SIG'
+parent: 'Special interest groups (SIGs)'
+grandparent: 'Contribute'
---
###### last updated: 2024-04-22
+
+
# Migration SIG
The Migration team is responsible for two migration projects - the migration tool and the ELevate project, including documentation and upgrades. See the [Migration](/migration/) section for more details.
diff --git a/docs/sigs/ProcessForCreatingNewSIG.md b/docs/sigs/ProcessForCreatingNewSIG.md
index 332229670..9fa16553b 100644
--- a/docs/sigs/ProcessForCreatingNewSIG.md
+++ b/docs/sigs/ProcessForCreatingNewSIG.md
@@ -1,3 +1,10 @@
+---
+title: 'The Process for Creating a New SIG* in the AlmaLinux Community'
+parent: 'Special interest groups (SIGs)'
+grandparent: 'Contribute'
+---
+
+
# The Process for Creating a New SIG* in the AlmaLinux Community
*Special Interest Group
diff --git a/docs/sigs/README.md b/docs/sigs/README.md
index 56516864c..91744f76a 100644
--- a/docs/sigs/README.md
+++ b/docs/sigs/README.md
@@ -1,7 +1,10 @@
---
-title: "Special interest groups"
+title: 'Special interest groups'
+parent: 'Contribute'
---
+
+
# Special interest groups
Special interest groups (SIGs) are teams within the AlmaLinux OS community that are focused on specific topics. Each SIG has its own channel on our [Mattermost](https://mattermost.com/) chat server [chat.almalinux.org](https://chat.almalinux.org/), but may communicate and work in different ways. Each SIG's details are found in the pages below.
diff --git a/docs/sigs/marketing/indico.md b/docs/sigs/marketing/indico.md
index b3f49a4e7..ced03735e 100644
--- a/docs/sigs/marketing/indico.md
+++ b/docs/sigs/marketing/indico.md
@@ -1,11 +1,16 @@
---
title: 'Managing events.almalinux.org'
+parent: 'Special interest groups (SIGs)'
+grandparent: 'Contribute'
+child: 'Marketing'
---
-# Managing events.almalinux.org
-
###### last updated: May 8, 2024
+
+
+# Managing events.almalinux.org
+
Our events are managed using [Indico](https://getindico.io/), the open source software created and developed at CERN. Our install, at [events.almalinux.org](https://events.almalinux.org) (documentation at [learn.getindico.io](https://learn.getindico.io/)), is kept up to date by the AlmaLinux Infra SIG, but events on it are managed by the marketing SIG. This document helps us consistently create new events to the community.
# Creating different events
@@ -53,4 +58,4 @@ If a schedule is set for meetings already, clone the meeting you just created to
> These meetings are held every week via $platform. If you'd like the meeting link, join the $channelname channel on chat.almalinux.org.
> For more information on this SIG, see the details on the AlmaLinux Wiki: $wikipage
1. Set the **"Theme for Lectures"** to lectures, and the **"Theme for Meetings"** to *Indico style*.
-1. Add an icon and SIG logo created using the [Canva template](https://www.canva.com/design/DAGEBQ_hwpk/meDfUVoUTVoyYIY1-hXaJA/edit).
\ No newline at end of file
+1. Add an icon and SIG logo created using the [Canva template](https://www.canva.com/design/DAGEBQ_hwpk/meDfUVoUTVoyYIY1-hXaJA/edit).
diff --git a/docs/sigs/sigproposaltemplate.md b/docs/sigs/sigproposaltemplate.md
index 3358d888e..8bc7cd3b7 100644
--- a/docs/sigs/sigproposaltemplate.md
+++ b/docs/sigs/sigproposaltemplate.md
@@ -1,6 +1,12 @@
---
-title: "name of SIG"
+title: 'name of SIG'
+parent: 'Special interest groups (SIGs)'
+grandparent: 'Contribute'
+child: 'The Process for Creating a New SIG* in the AlmaLinux Community'
---
+
+
+
# name of SIG
[insert the SIG's purpose here]