* Adjust sub-navigation padding for better alignment Added consistent left padding to sub-navigation items and links to improve visual hierarchy. Overrode Material theme's media query to ensure primary navigation padding remains uniform across breakpoints. * Remove unused comment in navigation.scss The comment regarding tabs styling was redundant and has been removed. This helps to keep the codebase clean and more maintainable. * Fix typo in Datenschutz link title in footer Corrected the link title from "sDatenschutzerklärung" to "Datenschutzerklärung" for consistency and clarity. This improves the accuracy of the footer content. * Remove outdated webinar entry from schedule The webinar scheduled for 23.05.2025 has been removed from the list. This ensures the schedule displays only relevant and up-to-date information. * Update webinar form iframe attributes Removed the unnecessary "scrolling" and "frameborder" attributes from the webinar form iframe for cleaner and more modern HTML. This change simplifies the code while retaining functionality. * Add new webinar dates and adjust formatting Added details for new webinars on 06.06.2025 and 13.06.2025. Updated labels and styling for consistency, including minor refinement of the webinar form container. --------- Co-authored-by: Tim Friedrich Weber <tfw@satware.com>
satwareai-mkdocs
A documentation website for satware.ai built with MkDocs and the Material for MkDocs theme.
Overview
This project contains the source files for the satware.ai documentation website. It uses MkDocs as the static site generator and the Material for MkDocs theme for styling and enhanced functionality.
Setup and Installation
-
Clone the repository:
git clone https://github.com/satware-ag/satwareai-mkdocs.git cd satwareai-mkdocs -
Create and activate a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate -
Install the dependencies:
pip install -r requirements.txt
Development
To start the development server:
./dev.sh
Or manually:
mkdocs serve
This will start a local development server at http://127.0.0.1:8000/ that automatically reloads when you make changes to the documentation.
SCSS Compilation
The project uses SCSS for styling. To compile SCSS files to CSS:
python compile_scss.py
Building the Site
To build the static site:
mkdocs build
This will create a site directory with the built static site.
Theme Customization
The site uses the Material for MkDocs theme with custom overrides located in the docs/overrides directory. Additional styling is provided through SCSS files in the docs/stylesheets directory.
Documentation
For more information about MkDocs and the Material for MkDocs theme, refer to: