* feat(tags): improve usability of tags
* Tags can be shown also at docs
* Documented tag-related config flags
* Added example tags to the site
* Made rendered tags active
* Move tags listing to ToC
* Hide tags section on no tags
* feat: implement child menu support in main navbar
- Added a new JavaScript file for handling dropdown functionality in the navbar.
- Implemented event listeners for toggling dropdowns, closing them on outside clicks, and dismissing with the Escape key.
- Updated navbar HTML to support dropdown items with children, enhancing the navigation experience.
- Adjusted core script imports to include the new dropdown functionality.
* chore: update menu identifiers and add missing translations for development versions
* chore: update hugo stats
* chore: update script name
* chore: update menu item names to include arrows for external links
* fix: CSS loading logic for production and theme dev environments
- Updated the CSS loading logic to differentiate between production and theme environments.
* fix: streamline CSS loading logic for production and development environments
- Refactored the CSS loading logic to ensure proper handling of stylesheets in both production and development modes.
- Consolidated the CSS concatenation and minification process for production, while simplifying the development loading process.
* fix: simplify development CSS loading in head partial
- Updated the CSS loading logic in head.html to streamline the process for development environments by renaming the variable for clarity and ensuring proper handling of stylesheets.
* Allow authors to set the reverse pagination setting of a page using front matter
* Adding some documentation of the reversePagination front matter custom parameter along with an example of how to use it and why you might want to use it
* refactor: update page width handling and CSS structure
- Changed the default page width from 1280px to 80rem in hugo.yaml.
- Replaced dynamic page width partials with a new CSS class 'hextra-max-page-width' across multiple layout files for consistency.
- Introduced a new head-config-css.html partial for managing CSS styles related to page width.
- Removed the outdated page-width utility partial to streamline the codebase.
* feat: introduce CSS variables for layout widths and update footer/navbar styles
- Added a new configs.css file to define CSS variables for page, navbar, and footer widths.
- Updated footer and navbar partials to utilize the new CSS classes for consistent width management.
- Refactored head-config-css.html to include the new navbar width variable.
- Enhanced the overall styling structure for better maintainability and responsiveness.
* Refactor: Rename configs.css to variables.css and update references
Remove head-config-css.html and update references to use variables.css instead of configs.css
* Update assets/css/variables.css
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update layouts/partials/head.html
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Add a `noindex` param to page front matter to block Google indexing for specific pages or directories. This is useful for avoiding duplicate content in search results or preventing indexing of pages that shouldn't appear in search engines.
- Adjust `head.html` for optional `noindex` param (default: false)
- Document usage in `configuration.md` and clarify Flexsearch section
* chore: migrate PostCSS configuration to v4
* chore: update dependencies in package.json and package-lock.json
- Bump versions for autoprefixer, postcss, postcss-cli, prettier, and tailwindcss.
- Remove unused dependencies to streamline the project.
* chore: add @tailwindcss/postcss and update package-lock.json
* fix: update import paths in CSS files for consistency
* fix: change prefix from `hx-` to `hx:`
* chore: migrate primary color theme variables to CSS
* fix: remove unnecessary text decoration property from anchor styles in typography CSS
* fix: update CSS styles for improved consistency and clarity across components
* chore: clean up package.json and package-lock.json, remove unused dependencies, and update CSS imports for better organization
* fix: bulk replace prefix `hx-` with `hx:`
* fix: update tailwind css prefix
* fix: styling consistent issues
- steps counter fix in v4
- removed tailwind.css
- update hr border colors
- fix button cursor in v4
- fix border colors in various places
* fix: update class prefixes for consistency in menu and sidebar components
* fix: refine CSS classes and transitions for navbar and sidebar components
- Updated hamburger menu styles for improved animation and structure.
- Adjusted sidebar transition duration for smoother effects.
- Standardized class prefixes for consistency across components.
* fix: update border color in hero badge component for improved styling consistency
* fix: update tab button cursor style for improved user interaction
* chore: recompile css
* fix: dark mode color not applied for before / after elements
* fix: docs navigation
* chore: recompile CSS
* chore: update Tailwind CSS and PostCSS dependencies to version 4.0.17, recompile CSS, and add safelist
* fix: typo in class name and add back decoration-from-font for typography a tags
* fix: update class syntax for Tailwind CSS compatibility in mermaid code block
* chore(ci): add support for building docs for multiple versions
* chore(ci): enable fetching tags in GitHub Actions workflow
* chore(build): add v0.8.6 version to build script
* sidebar: fix more menu item with multilingual
Fixes#593
Correctly parses multilingual URL in sidebar, particularly if
lang code follows a nested sub directory.
For instance, GH pages hosting where the baseurl might be of the
format `https://<USERNAME>.github.io/<REPO>/`.
* Update sidebar.html
---------
Co-authored-by: Xin <xin@imfing.com>