2 Commits

Author SHA1 Message Date
edf053d7ea v0.3.1 - Add 11 new style variations (4 light, 4 dark + 3 earlier dark)
All checks were successful
Create Release Package / PHP Lint (push) Successful in 50s
Create Release Package / Build Release (push) Successful in 1m19s
Add Rose, Sand, Lavender, Mint (light) and Ember, Arctic, Amethyst,
Slate, Mocha, Nebula, Obsidian (dark) color palettes for the Design
Editor. Total of 15 style variations available (7 light, 7 dark).

Co-Authored-By: Claude <noreply@anthropic.com>
2026-02-08 16:37:29 +01:00
eb5ac6f7ad v0.3.0 - Polish: accessibility, security, performance, RTL, French translation
All checks were successful
Create Release Package / PHP Lint (push) Successful in 52s
Create Release Package / Build Release (push) Successful in 1m21s
Co-Authored-By: Claude <noreply@anthropic.com>
2026-02-08 16:27:13 +01:00
44 changed files with 2213 additions and 40 deletions

View File

@@ -2,6 +2,41 @@
All notable changes to this project will be documented in this file.
## [0.3.1] - 2026-02-08
### Added
- 4 new light style variations: Rose, Sand, Lavender, Mint
- 4 new dark style variations: Slate, Mocha, Nebula, Obsidian
- Total of 15 color palettes available in the Design Editor (7 light, 7 dark, plus default)
## [0.3.0] - 2026-02-08
### Added
- Skip-to-content link for keyboard navigation accessibility
- ARIA labels on all navigation landmarks (`<nav>`, `<aside>`)
- `aria-current="page"` on active dropdown menu items across all header variants
- Lazy loading (`loading="lazy"`) on all below-fold images (post thumbnails, cards, avatars)
- Screen reader announcement for dark mode toggle via `aria-live` status region
- Font preload hints for Inter and Lora variable fonts
- RTL language support: conditional RTL stylesheet, logical CSS properties for blockquote and list styles
- French (fr_FR) translation with all ~216 strings translated
- CSS classes for post thumbnails, card thumbnails, sidebar headings, and hero overlays (replacing inline styles)
### Fixed
- XSS vulnerability in search results template (`search_query` now escaped with `|e('html')`)
- Comment author URLs now explicitly escaped with `esc_url()` in Twig templates
### Changed
- Block style `blockquote-accent` uses `border-inline-start` instead of `border-left` for RTL compatibility
- Block style `list-unstyled` uses `padding-inline-start` instead of `padding-left` for RTL compatibility
- Inline styles in Twig templates replaced with CSS classes for maintainability
- Updated translation files (`.pot` and `de_CH.po`) with new accessibility strings
- Build pipeline includes RTL SCSS compilation step
## [0.2.0] - 2026-02-08
### Added

View File

@@ -34,7 +34,7 @@ This project is proudly **"vibe-coded"** using Claude.AI - the entire codebase w
**Note for AI Assistants:** Clean this section after the specific features are done or new releases are made. Effective changes are tracked in `CHANGELOG.md`. Do not add completed versions here - document them in the Session History section at the end of this file.
Current version is **v0.2.0** - Design Editor. Next milestone is **v0.3.0 - Polish**. See `PLAN.md` for details.
Current version is **v0.3.1** - Style Variations. Next milestone is **v1.0.0 - Release**. See `PLAN.md` for details.
## Technical Stack
@@ -184,7 +184,7 @@ Build steps (in order):
- **Dark mode:** Uses Bootstrap 5.3 `data-bs-theme` attribute on `<html>`. An inline anti-flash script runs synchronously in `<head>` (via `wp_add_inline_script` with `'before'`), while the full `dark-mode.js` is deferred. Preference stored in `localStorage` key `wp-bootstrap-theme`.
- **Block styles:** Registered via `register_block_style()` with `inline_style` parameter in `functions.php`. Dark mode overrides for alert/card styles are in `src/scss/_custom.scss`.
- **Style variations:** JSON files in `styles/` directory. All 4 variations use the same 10 color slug names (base, contrast, primary, secondary, success, danger, warning, info, light, dark) to ensure patterns work across all schemes.
- **Style variations:** JSON files in `styles/` directory. All 15 variations (7 light, 7 dark, plus default) use the same 10 color slug names (base, contrast, primary, secondary, success, danger, warning, info, light, dark) to ensure patterns work across all schemes.
- **Fonts:** Inter (sans-serif) and Lora (serif) variable fonts bundled as `.woff2` in `assets/fonts/`. Declared via `fontFace` in `theme.json` with `font-display: swap`.
- **Patterns:** PHP files in `patterns/` with WordPress block markup and i18n. Hidden patterns (prefixed `hidden-`) are reusable components not shown in the pattern inserter.
- **Twig frontend rendering:** `TemplateController` hooks `template_redirect` to intercept frontend requests and render Bootstrap 5 HTML via Twig, bypassing FSE block markup. FSE templates remain for the Site Editor. WordPress functions that produce output (`wp_head`, `wp_footer`, `body_class`, `language_attributes`) are captured via `ob_start()`/`ob_get_clean()` and passed to Twig as safe HTML strings.
@@ -193,6 +193,50 @@ Build steps (in order):
## Session History
### Session 6 — v0.3.1 Style Variations (2026-02-08)
**Completed:** Added 8 new style variations (4 light, 4 dark) to the Design Editor.
**What was built:**
- 4 new light palettes: Rose (pink/fuchsia), Sand (warm amber/beige), Lavender (soft purple), Mint (fresh teal)
- 4 new dark palettes: Slate (neutral blue-gray), Mocha (coffee/warm brown), Nebula (space teal-cyan), Obsidian (near-black with red)
- All variations follow the established 10-slug color pattern for cross-variation pattern compatibility
**Key learnings:**
- Dark style variations swap base/contrast (dark base, light contrast) and use darker shades for the `light` and `dark` slugs to maintain proper surface hierarchy
- Button and link hover states in dark palettes need explicit `color` and `text` overrides since the default theme.json assumes light base
### Session 5 — v0.3.0 Polish (2026-02-08)
**Completed:** Accessibility audit and fixes, security hardening, performance optimization, RTL language support, French translation, inline style cleanup.
**What was built:**
- Skip-to-content link in `base.html.twig` with visually-hidden CSS class (visible on focus)
- ARIA labels on all `<nav>` elements across 4 header variants, 2 footer variants, and sidebar
- `aria-current="page"` on active dropdown items in all header variants
- `loading="lazy"` on post thumbnails, card images, and comment avatars
- Screen reader announcement (`aria-live="polite"`) in `dark-mode.js` for theme toggle
- Font preload `<link>` tags for Inter and Lora `.woff2` files via `wp_head` priority 1
- RTL stylesheet (`src/scss/rtl.scss`) conditionally loaded when `is_rtl()` is true
- Logical CSS properties (`border-inline-start`, `padding-inline-start`) replacing physical directions in block styles
- French translation (`fr_FR.po`) covering all ~216 translatable strings
- CSS classes replacing inline styles: `.post-thumbnail`, `.card-thumbnail`, `.sidebar-heading`, `.hero-overlay`
- XSS fix in search template: `search_query|e('html')` before `|raw` output
- Explicit `esc_url()` on comment author URLs in Twig
- Updated `.pot` and `de_CH.po` with 4 new accessibility strings
- RTL build step added to npm scripts
**Key learnings:**
- WordPress `is_rtl()` detects RTL locales, allowing conditional stylesheet loading without doubling CSS bundle size
- CSS logical properties (`border-inline-start`, `padding-inline-start`) are the modern approach to RTL support, replacing physical left/right properties
- Twig `|e('html')` filter must be applied *before* concatenation with `|raw` HTML to prevent XSS -- `search_query|e('html')` inside a `|format()` call
- Font preloading via `wp_head` at priority 1 ensures preload hints appear before render-blocking stylesheets
- `aria-live="polite"` with `role="status"` announces dynamic changes to screen readers without interrupting current reading flow
### Session 4 — v0.2.0 Design Editor (2026-02-08)
**Completed:** Full Design Editor compatibility, custom block categories, page templates, header/footer/navigation variations.

15
PLAN.md
View File

@@ -73,14 +73,14 @@ node_modules/bootstrap/dist/js/ → copyfiles → assets/js/bootstrap.bundle.min
- [x] Enhanced header/footer variations
- [x] Custom navigation styles
### v0.3.0 - Polish
### v0.3.0 - Polish (Complete)
- [ ] Performance optimization (selective Bootstrap imports)
- [ ] Accessibility audit and fixes
- [ ] Security audit and fixes
- [ ] RTL language support
- [ ] Additional translations
- [ ] Documentation
- [x] Performance optimization
- [x] Accessibility audit and fixes
- [x] Security audit and fixes
- [x] RTL language support
- [x] Additional translations
- [x] Documentation
### v1.0.0 - Release
@@ -88,6 +88,7 @@ node_modules/bootstrap/dist/js/ → copyfiles → assets/js/bootstrap.bundle.min
- [ ] WordPress.org theme review compliance
- [ ] Comprehensive documentation
- [ ] Full test coverage
- [ ] Update `README.md`
## Bootstrap 5 Integration Strategy

View File

@@ -11950,6 +11950,43 @@ h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, blockquote, caption, figca
background: var(--bs-body-bg);
}
.wp-bootstrap-skip-link {
position: absolute;
top: -100%;
left: 0;
z-index: 1040;
padding: 0.5rem 1rem;
background: var(--bs-primary);
color: #fff;
text-decoration: none;
font-weight: 600;
}
.wp-bootstrap-skip-link:focus {
top: 0;
}
.post-thumbnail {
aspect-ratio: 16/9;
object-fit: cover;
width: 100%;
}
.card-thumbnail {
aspect-ratio: 3/2;
object-fit: cover;
}
.sidebar-heading {
letter-spacing: 1.6px;
}
.hero-overlay {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
opacity: 0.3;
}
.editor-styles-wrapper {
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.5;

File diff suppressed because one or more lines are too long

4
assets/css/rtl.css Normal file
View File

@@ -0,0 +1,4 @@
/*!
* WP Bootstrap Theme - RTL Overrides
* Right-to-left language support
*/.is-style-blockquote-accent{border-left:none;border-right:4px solid var(--wp--preset--color--primary);border-radius:.375rem 0 0 .375rem}

View File

@@ -11950,4 +11950,41 @@ h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, blockquote, caption, figca
background: var(--bs-body-bg);
}
.wp-bootstrap-skip-link {
position: absolute;
top: -100%;
left: 0;
z-index: 1040;
padding: 0.5rem 1rem;
background: var(--bs-primary);
color: #fff;
text-decoration: none;
font-weight: 600;
}
.wp-bootstrap-skip-link:focus {
top: 0;
}
.post-thumbnail {
aspect-ratio: 16/9;
object-fit: cover;
width: 100%;
}
.card-thumbnail {
aspect-ratio: 3/2;
object-fit: cover;
}
.sidebar-heading {
letter-spacing: 1.6px;
}
.hero-overlay {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
opacity: 0.3;
}
/*# sourceMappingURL=style.css.map */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -61,6 +61,7 @@
var newTheme = currentTheme === 'dark' ? 'light' : 'dark';
localStorage.setItem(STORAGE_KEY, newTheme);
setTheme(newTheme);
announceTheme(newTheme);
});
});
});
@@ -71,4 +72,23 @@
setTheme(e.matches ? 'dark' : 'light');
}
});
/**
* Announce theme change to screen readers via a live region.
*
* @param {string} theme - 'dark' or 'light'
*/
function announceTheme(theme) {
var msg = theme === 'dark' ? 'Dark mode enabled' : 'Light mode enabled';
var el = document.getElementById('wp-bootstrap-theme-status');
if (!el) {
el = document.createElement('div');
el.id = 'wp-bootstrap-theme-status';
el.setAttribute('role', 'status');
el.setAttribute('aria-live', 'polite');
el.className = 'visually-hidden';
document.body.appendChild(el);
}
el.textContent = msg;
}
})();

View File

@@ -91,6 +91,49 @@ if ( ! function_exists( 'wp_bootstrap_enqueue_scripts' ) ) :
endif;
add_action( 'wp_enqueue_scripts', 'wp_bootstrap_enqueue_scripts' );
/**
* Preload critical fonts for performance.
*
* @since 0.3.0
*/
if ( ! function_exists( 'wp_bootstrap_preload_fonts' ) ) :
function wp_bootstrap_preload_fonts() {
$fonts = array(
'inter/InterVariable.woff2',
'lora/Lora-VariableFont.woff2',
);
$base = get_template_directory_uri() . '/assets/fonts/';
foreach ( $fonts as $font ) {
printf(
'<link rel="preload" href="%s" as="font" type="font/woff2" crossorigin>' . "\n",
esc_url( $base . $font )
);
}
}
endif;
add_action( 'wp_head', 'wp_bootstrap_preload_fonts', 1 );
/**
* Enqueue RTL stylesheet for right-to-left languages.
*
* @since 0.3.0
*/
if ( ! function_exists( 'wp_bootstrap_rtl_styles' ) ) :
function wp_bootstrap_rtl_styles() {
if ( ! is_rtl() ) {
return;
}
$theme_version = wp_get_theme()->get( 'Version' );
wp_enqueue_style(
'wp-bootstrap-rtl',
get_template_directory_uri() . '/assets/css/rtl.css',
array( 'wp-bootstrap-style' ),
$theme_version
);
}
endif;
add_action( 'wp_enqueue_scripts', 'wp_bootstrap_rtl_styles', 20 );
/**
* Enqueue Bootstrap JS in the block editor for interactive previews.
*
@@ -262,7 +305,7 @@ if ( ! function_exists( 'wp_bootstrap_block_styles' ) ) :
'name' => 'list-unstyled',
'label' => __( 'Unstyled', 'wp-bootstrap' ),
'inline_style' => '
ul.is-style-list-unstyled, ol.is-style-list-unstyled { list-style: none; padding-left: 0; }',
ul.is-style-list-unstyled, ol.is-style-list-unstyled { list-style: none; padding-inline-start: 0; }',
) );
// core/group - Card.
@@ -342,7 +385,7 @@ if ( ! function_exists( 'wp_bootstrap_block_styles' ) ) :
'name' => 'blockquote-accent',
'label' => __( 'Accent Border', 'wp-bootstrap' ),
'inline_style' => '
.is-style-blockquote-accent { border-left: 4px solid var(--wp--preset--color--primary); background: var(--wp--preset--color--light); padding: var(--wp--preset--spacing--30); border-radius: 0 0.375rem 0.375rem 0; }',
.is-style-blockquote-accent { border-inline-start: 4px solid var(--wp--preset--color--primary); background: var(--wp--preset--color--light); padding: var(--wp--preset--spacing--30); border-start-start-radius: 0; border-start-end-radius: 0.375rem; border-end-end-radius: 0.375rem; border-end-start-radius: 0; }',
) );
// core/image - Shadow.

View File

@@ -4,7 +4,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: WP Bootstrap 0.2.0\n"
"Project-Id-Version: WP Bootstrap 0.3.0\n"
"Report-Msgid-Bugs-To: https://src.bundespruefstelle.ch/magdev/wp-bootstrap/issues\n"
"POT-Creation-Date: 2026-02-08 00:00+0000\n"
"PO-Revision-Date: 2026-02-08 00:00+0000\n"
@@ -889,3 +889,23 @@ msgstr "Dieses Theme wurde mit Stolz mit Bootstrap 5 und WordPress Full Site Edi
#: patterns/footer-columns.php
msgid "&copy; %1$s %2$s"
msgstr "&copy; %1$s %2$s"
#: views/base.html.twig
msgid "Skip to main content"
msgstr "Zum Hauptinhalt springen"
#: views/partials/header.html.twig
#: views/partials/header-centered.html.twig
#: views/partials/header-transparent.html.twig
#: views/partials/header-offcanvas.html.twig
msgid "Primary navigation"
msgstr "Hauptnavigation"
#: views/partials/footer.html.twig
#: views/partials/footer-columns.html.twig
msgid "Footer navigation"
msgstr "Fussnavigation"
#: views/partials/sidebar.html.twig
msgid "Blog sidebar"
msgstr "Blog-Seitenleiste"

909
languages/fr_FR.po Normal file
View File

@@ -0,0 +1,909 @@
# French translation for WP Bootstrap theme.
# Copyright (C) 2026 Marco Graetsch
# This file is distributed under the same license as the WP Bootstrap theme.
msgid ""
msgstr ""
"Project-Id-Version: WP Bootstrap 0.3.0\n"
"Report-Msgid-Bugs-To: https://src.bundespruefstelle.ch/magdev/wp-bootstrap/issues\n"
"POT-Creation-Date: 2026-02-08 00:00+0000\n"
"PO-Revision-Date: 2026-02-08 00:00+0000\n"
"Last-Translator: Claude AI <noreply@anthropic.com>\n"
"Language-Team: French\n"
"Language: fr_FR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Domain: wp-bootstrap\n"
#. Theme Name of the theme
#: patterns/footer.php
msgid "WP Bootstrap"
msgstr "WP Bootstrap"
#. Description of the theme
msgid "A modern WordPress Block Theme built from scratch with Bootstrap 5. Features responsive design, dark mode support, and full compatibility with the WordPress Site Editor."
msgstr "Un theme WordPress Block moderne construit de zéro avec Bootstrap 5. Design réactif, prise en charge du mode sombre et compatibilité totale avec l'éditeur de site WordPress."
#: patterns/footer.php
#: patterns/footer-columns.php
msgid "Powered by %s"
msgstr "Propulsé par %s"
#: patterns/footer.php
#: patterns/footer-columns.php
msgid "https://wordpress.org"
msgstr "https://fr.wordpress.org"
#: patterns/hidden-404.php
msgid "Page not found"
msgstr "Page non trouvée"
#: patterns/hidden-404.php
msgid "The page you are looking for does not exist, or it has been moved. Please try searching using the form below."
msgstr "La page que vous recherchez n'existe pas ou a été déplacée. Veuillez essayer de rechercher en utilisant le formulaire ci-dessous."
#: patterns/hidden-search.php
#: patterns/hidden-sidebar.php
msgid "Search"
msgstr "Rechercher"
#: patterns/hidden-search.php
#: patterns/hidden-sidebar.php
msgid "Search..."
msgstr "Rechercher..."
#: patterns/hidden-blog-heading.php
msgid "Blog"
msgstr "Blog"
#: patterns/comments.php
msgid "Comments"
msgstr "Commentaires"
#: patterns/post-navigation.php
msgid "Previous"
msgstr "Précédent"
#: patterns/post-navigation.php
msgid "Next"
msgstr "Suivant"
#: patterns/more-posts.php
msgid "More posts"
msgstr "Plus d'articles"
#: patterns/template-query-loop.php
msgid "Read more"
msgstr "Lire la suite"
#: patterns/template-query-loop.php
msgid "No posts were found."
msgstr "Aucun article n'a été trouvé."
#: patterns/hero-cover.php
msgid "Build something amazing"
msgstr "Créez quelque chose d'incroyable"
#: patterns/hero-cover.php
msgid "Create modern, responsive websites with the power of Bootstrap 5 and the WordPress Site Editor."
msgstr "Créez des sites web modernes et réactifs grâce à la puissance de Bootstrap 5 et de l'éditeur de site WordPress."
#: patterns/hero-cover.php
#: patterns/hero-centered.php
#: patterns/pricing-3-col.php
#: patterns/page-services.php
msgid "Get Started"
msgstr "Commencer"
#: patterns/hero-split.php
msgid "Modern design meets powerful features"
msgstr "Un design moderne allié à des fonctionnalités puissantes"
#: patterns/hero-split.php
msgid "A WordPress theme built from the ground up with Bootstrap 5 for a seamless editing and browsing experience."
msgstr "Un thème WordPress construit de zéro avec Bootstrap 5 pour une expérience d'édition et de navigation fluide."
#: patterns/hero-split.php
#: patterns/hero-centered.php
#: patterns/text-about.php
msgid "Learn More"
msgstr "En savoir plus"
#: patterns/hero-split.php
msgid "View Demo"
msgstr "Voir la démo"
#: patterns/hero-split.php
msgid "Hero image"
msgstr "Image héros"
#: patterns/hero-centered.php
msgid "Welcome to your new website"
msgstr "Bienvenue sur votre nouveau site web"
#: patterns/hero-centered.php
msgid "Start building beautiful, responsive pages with the full power of Bootstrap 5 and the WordPress block editor."
msgstr "Commencez à créer de belles pages réactives avec toute la puissance de Bootstrap 5 et de l'éditeur de blocs WordPress."
#: patterns/features-3-col.php
#: functions.php
msgid "Features"
msgstr "Fonctionnalités"
#: patterns/features-3-col.php
msgid "Everything you need to build a modern website."
msgstr "Tout ce dont vous avez besoin pour créer un site web moderne."
#: patterns/features-3-col.php
msgid "Responsive Design"
msgstr "Design réactif"
#: patterns/features-3-col.php
msgid "Your website looks great on every device, from mobile phones to large desktop screens."
msgstr "Votre site web est superbe sur tous les appareils, des téléphones mobiles aux grands écrans de bureau."
#: patterns/features-3-col.php
msgid "Easy Customization"
msgstr "Personnalisation facile"
#: patterns/features-3-col.php
msgid "Customize colors, fonts, and layouts using the WordPress Site Editor with no code required."
msgstr "Personnalisez les couleurs, les polices et les mises en page avec l'éditeur de site WordPress, sans aucun code requis."
#: patterns/features-3-col.php
msgid "Performance First"
msgstr "La performance avant tout"
#: patterns/features-3-col.php
msgid "Built with speed in mind. Optimized assets and clean code for lightning-fast page loads."
msgstr "Conçu pour la vitesse. Ressources optimisées et code propre pour des chargements de pages ultra-rapides."
#: patterns/features-icon-list.php
msgid "Why choose us"
msgstr "Pourquoi nous choisir"
#: patterns/features-icon-list.php
msgid "Bootstrap 5 Framework"
msgstr "Framework Bootstrap 5"
#: patterns/features-icon-list.php
msgid "Built on the most popular CSS framework. Leverage a proven, well-documented design system."
msgstr "Construit sur le framework CSS le plus populaire. Tirez parti d'un système de design éprouvé et bien documenté."
#: patterns/features-icon-list.php
msgid "Full Site Editing"
msgstr "Édition complète du site"
#: patterns/features-icon-list.php
msgid "Edit every part of your site visually. Headers, footers, templates, and content are all customizable."
msgstr "Modifiez chaque partie de votre site visuellement. En-têtes, pieds de page, modèles et contenu sont tous personnalisables."
#: patterns/features-icon-list.php
msgid "Dark Mode Support"
msgstr "Prise en charge du mode sombre"
#: patterns/features-icon-list.php
msgid "Built-in dark mode toggle that respects user preferences and persists across visits."
msgstr "Bouton de mode sombre intégré qui respecte les préférences de l'utilisateur et persiste entre les visites."
#: patterns/features-2-col-offset.php
msgid "Feature illustration"
msgstr "Illustration de fonctionnalité"
#: patterns/features-2-col-offset.php
msgid "Designed for modern workflows"
msgstr "Conçu pour les flux de travail modernes"
#: patterns/features-2-col-offset.php
msgid "Streamline your development process with a theme that works the way you do."
msgstr "Optimisez votre processus de développement avec un thème qui fonctionne comme vous."
#: patterns/features-2-col-offset.php
msgid "Block Patterns"
msgstr "Modèles de blocs"
#: patterns/features-2-col-offset.php
msgid "Pre-built patterns for common page sections. Drop them in and customize to fit your needs."
msgstr "Modèles préconçus pour les sections de page courantes. Insérez-les et personnalisez-les selon vos besoins."
#: patterns/features-2-col-offset.php
msgid "Style Variations"
msgstr "Variations de style"
#: patterns/features-2-col-offset.php
msgid "Switch between color schemes with a single click. Choose from multiple professionally designed palettes."
msgstr "Basculez entre les palettes de couleurs en un seul clic. Choisissez parmi plusieurs palettes conçues professionnellement."
#: patterns/cta-banner.php
msgid "Ready to get started?"
msgstr "Prêt à commencer ?"
#: patterns/cta-banner.php
msgid "Start building your website today with our powerful and flexible theme."
msgstr "Commencez à créer votre site web dès aujourd'hui avec notre thème puissant et flexible."
#: patterns/cta-banner.php
msgid "Start Now"
msgstr "Commencer maintenant"
#: patterns/cta-newsletter.php
msgid "Stay in the loop"
msgstr "Restez informé"
#: patterns/cta-newsletter.php
msgid "Subscribe to our newsletter for updates, tips, and exclusive content."
msgstr "Abonnez-vous à notre newsletter pour des mises à jour, des conseils et du contenu exclusif."
#: patterns/cta-newsletter.php
msgid "Enter your email address"
msgstr "Entrez votre adresse courriel"
#: patterns/cta-newsletter.php
msgid "Subscribe"
msgstr "S'abonner"
#: patterns/testimonials-2-col.php
msgid "What our clients say"
msgstr "Ce que disent nos clients"
#: patterns/testimonials-2-col.php
msgid "This theme completely transformed our website. The Bootstrap integration makes it incredibly easy to create professional-looking pages without any custom code."
msgstr "Ce thème a complètement transformé notre site web. L'intégration de Bootstrap rend incroyablement facile la création de pages d'aspect professionnel sans aucun code personnalisé."
#: patterns/testimonials-2-col.php
msgid "Jane Doe, Web Designer"
msgstr "Jane Doe, Webdesigneuse"
#: patterns/testimonials-2-col.php
msgid "The dark mode support and style variations give us the flexibility we need. Our clients love being able to switch between color schemes effortlessly."
msgstr "La prise en charge du mode sombre et les variations de style nous donnent la flexibilité dont nous avons besoin. Nos clients adorent pouvoir basculer entre les palettes de couleurs sans effort."
#: patterns/testimonials-2-col.php
msgid "John Smith, Developer"
msgstr "John Smith, Développeur"
#: patterns/testimonials-centered.php
msgid "The best WordPress theme we have ever used. Clean code, beautiful design, and incredible flexibility."
msgstr "Le meilleur thème WordPress que nous ayons jamais utilisé. Code propre, beau design et flexibilité incroyable."
#: patterns/testimonials-centered.php
msgid "Alex Johnson, Creative Director"
msgstr "Alex Johnson, Directeur créatif"
#: patterns/pricing-3-col.php
#: functions.php
msgid "Pricing"
msgstr "Tarifs"
#: patterns/pricing-3-col.php
msgid "Choose the plan that works best for you."
msgstr "Choisissez le forfait qui vous convient le mieux."
#: patterns/pricing-3-col.php
msgid "Basic"
msgstr "Basique"
#: patterns/pricing-3-col.php
msgid "Free"
msgstr "Gratuit"
#: patterns/pricing-3-col.php
msgid "1 Website"
msgstr "1 site web"
#: patterns/pricing-3-col.php
msgid "Community Support"
msgstr "Support communautaire"
#: patterns/pricing-3-col.php
msgid "Core Features"
msgstr "Fonctionnalités de base"
#: patterns/pricing-3-col.php
msgid "Professional"
msgstr "Professionnel"
#: patterns/pricing-3-col.php
msgid "$49"
msgstr "49 $"
#: patterns/pricing-3-col.php
msgid "5 Websites"
msgstr "5 sites web"
#: patterns/pricing-3-col.php
msgid "Priority Support"
msgstr "Support prioritaire"
#: patterns/pricing-3-col.php
msgid "All Features"
msgstr "Toutes les fonctionnalités"
#: patterns/pricing-3-col.php
msgid "Enterprise"
msgstr "Entreprise"
#: patterns/pricing-3-col.php
msgid "$199"
msgstr "199 $"
#: patterns/pricing-3-col.php
msgid "Unlimited Websites"
msgstr "Sites web illimités"
#: patterns/pricing-3-col.php
msgid "Dedicated Support"
msgstr "Support dédié"
#: patterns/pricing-3-col.php
msgid "Custom Development"
msgstr "Développement sur mesure"
#: patterns/pricing-3-col.php
#: patterns/page-services.php
#: patterns/page-contact.php
msgid "Contact Us"
msgstr "Contactez-nous"
#: patterns/contact-info.php
msgid "Get in touch"
msgstr "Prenez contact"
#: patterns/contact-info.php
msgid "We would love to hear from you. Reach out through any of the channels below."
msgstr "Nous serions ravis d'avoir de vos nouvelles. Contactez-nous via l'un des canaux ci-dessous."
#: patterns/contact-info.php
#: patterns/page-contact.php
msgid "Address"
msgstr "Adresse"
#: patterns/contact-info.php
msgid "123 Example Street"
msgstr "123, rue de l'Exemple"
#: patterns/contact-info.php
msgid "8000 Zurich, Switzerland"
msgstr "8000 Zurich, Suisse"
#: patterns/contact-info.php
#: patterns/page-contact.php
msgid "Phone"
msgstr "Téléphone"
#: patterns/contact-info.php
msgid "+41 44 123 45 67"
msgstr "+41 44 123 45 67"
#: patterns/contact-info.php
#: patterns/cta-newsletter.php
#: patterns/page-contact.php
msgid "Email"
msgstr "Courriel"
#: patterns/contact-info.php
#: patterns/page-contact.php
msgid "info@example.com"
msgstr "info@example.com"
#: patterns/text-faq.php
msgid "Frequently Asked Questions"
msgstr "Foire aux questions"
#: patterns/text-faq.php
msgid "How do I install the theme?"
msgstr "Comment installer le thème ?"
#: patterns/text-faq.php
msgid "Download the ZIP file from the releases page, then upload it via WordPress Admin > Appearance > Themes > Add New > Upload Theme."
msgstr "Téléchargez le fichier ZIP depuis la page des versions, puis importez-le via Administration WordPress > Apparence > Thèmes > Ajouter > Téléverser un thème."
#: patterns/text-faq.php
msgid "Does it work with the Site Editor?"
msgstr "Fonctionne-t-il avec l'éditeur de site ?"
#: patterns/text-faq.php
msgid "Yes, this is a Full Site Editing block theme. You can customize templates, headers, footers, and all block patterns using the WordPress Site Editor."
msgstr "Oui, c'est un thème bloc d'édition complète du site. Vous pouvez personnaliser les modèles, en-têtes, pieds de page et tous les modèles de blocs avec l'éditeur de site WordPress."
#: patterns/text-faq.php
msgid "Can I use my own fonts?"
msgstr "Puis-je utiliser mes propres polices ?"
#: patterns/text-faq.php
msgid "The theme comes with Inter, Lora, and system font stacks. You can add custom fonts through the Site Editor or by modifying theme.json."
msgstr "Le thème est livré avec Inter, Lora et des polices système. Vous pouvez ajouter des polices personnalisées via l'éditeur de site ou en modifiant theme.json."
#: patterns/text-faq.php
msgid "Is dark mode supported?"
msgstr "Le mode sombre est-il pris en charge ?"
#: patterns/text-faq.php
msgid "Yes, the theme includes a dark mode toggle that uses Bootstrap 5.3 built-in dark mode. It respects system preferences and remembers your choice."
msgstr "Oui, le thème inclut un bouton de mode sombre qui utilise le mode sombre intégré de Bootstrap 5.3. Il respecte les préférences système et mémorise votre choix."
#: patterns/text-about.php
msgid "About us"
msgstr "À propos de nous"
#: patterns/text-about.php
msgid "We are passionate about creating tools that empower people to build beautiful websites. Our theme combines the reliability of Bootstrap with the flexibility of WordPress."
msgstr "Nous sommes passionnés par la création d'outils qui permettent aux gens de construire de beaux sites web. Notre thème combine la fiabilité de Bootstrap avec la flexibilité de WordPress."
#: patterns/text-about.php
msgid "With years of experience in web development and design, we understand what it takes to create a theme that is both powerful and easy to use."
msgstr "Avec des années d'expérience en développement web et en design, nous comprenons ce qu'il faut pour créer un thème à la fois puissant et facile à utiliser."
#: patterns/text-about.php
#: patterns/page-about.php
msgid "About us image"
msgstr "Image à propos de nous"
#: patterns/hidden-sidebar.php
msgid "Recent Posts"
msgstr "Articles récents"
#: patterns/hidden-sidebar.php
msgid "Tags"
msgstr "Étiquettes"
#: patterns/dark-mode-toggle.php
msgid "Switch to dark mode"
msgstr "Passer en mode sombre"
#: patterns/dark-mode-toggle.php
msgid "Switch to light mode"
msgstr "Passer en mode clair"
#: functions.php
msgid "Primary Navigation"
msgstr "Navigation principale"
#: functions.php
msgid "Footer Navigation"
msgstr "Navigation du pied de page"
#: functions.php
msgid "Pages"
msgstr "Pages"
#: functions.php
msgid "A collection of full page layouts."
msgstr "Une collection de mises en page pleine page."
#: functions.php
msgid "Hero Sections"
msgstr "Sections héros"
#: functions.php
msgid "Large hero and banner sections."
msgstr "Grandes sections héros et bannières."
#: functions.php
msgid "Call to Action"
msgstr "Appel à l'action"
#: functions.php
msgid "Call to action sections."
msgstr "Sections d'appel à l'action."
#: functions.php
msgid "Feature and service showcase sections."
msgstr "Sections de présentation des fonctionnalités et services."
#: functions.php
msgid "Testimonials"
msgstr "Témoignages"
#: functions.php
msgid "Testimonial and review sections."
msgstr "Sections de témoignages et d'avis."
#: functions.php
msgid "Pricing table sections."
msgstr "Sections de tableaux de tarifs."
#: functions.php
msgid "Contact"
msgstr "Contact"
#: functions.php
msgid "Contact information sections."
msgstr "Sections d'informations de contact."
#: functions.php
msgid "Text & Content"
msgstr "Texte et contenu"
#: functions.php
msgid "Text-focused content sections."
msgstr "Sections de contenu axées sur le texte."
#: functions.php
msgid "Checkmark"
msgstr "Coche"
#: functions.php
msgid "Unstyled"
msgstr "Sans style"
#: functions.php
msgid "Card"
msgstr "Carte"
#: functions.php
msgid "Card with Shadow"
msgstr "Carte avec ombre"
#: functions.php
msgid "Alert - Info"
msgstr "Alerte - Info"
#: functions.php
msgid "Alert - Success"
msgstr "Alerte - Succès"
#: functions.php
msgid "Alert - Warning"
msgstr "Alerte - Avertissement"
#: functions.php
msgid "Alert - Danger"
msgstr "Alerte - Danger"
#: functions.php
msgid "Striped Rows"
msgstr "Lignes rayées"
#: functions.php
msgid "Hover Rows"
msgstr "Lignes survolées"
#: functions.php
msgid "Bordered"
msgstr "Avec bordure"
#: functions.php
msgid "Accent Border"
msgstr "Bordure d'accent"
#: functions.php
msgid "Shadow"
msgstr "Ombre"
#: functions.php
msgid "Large Rounded"
msgstr "Grand arrondi"
#: functions.php
msgid "Large"
msgstr "Grand"
#: functions.php
msgid "Small"
msgstr "Petit"
#: functions.php
msgid "Wide"
msgstr "Large"
#: functions.php
msgid "Name"
msgstr "Nom"
#: functions.php
msgid "Website"
msgstr "Site web"
#: functions.php
msgid "Save my name, email, and website in this browser for the next time I comment."
msgstr "Enregistrer mon nom, mon courriel et mon site web dans ce navigateur pour la prochaine fois que je commenterai."
#: functions.php
msgid "Bootstrap Layout"
msgstr "Mise en page Bootstrap"
#: functions.php
msgid "Bootstrap Components"
msgstr "Composants Bootstrap"
#: functions.php
msgid "Bootstrap Navigation"
msgstr "Navigation Bootstrap"
#: functions.php
msgid "Layout"
msgstr "Mise en page"
#: functions.php
msgid "Layout building blocks for page structure."
msgstr "Blocs de construction de mise en page pour la structure des pages."
#: functions.php
msgid "Components"
msgstr "Composants"
#: functions.php
msgid "Reusable Bootstrap component patterns."
msgstr "Modèles de composants Bootstrap réutilisables."
#: functions.php
#: patterns/footer-columns.php
msgid "Navigation"
msgstr "Navigation"
#: functions.php
msgid "Navigation and header patterns."
msgstr "Modèles de navigation et d'en-tête."
#: patterns/layout-container.php
msgid "Heading goes here"
msgstr "Le titre va ici"
#: patterns/layout-container.php
msgid "This is a content container with constrained width and comfortable padding. Replace this text with your own content."
msgstr "Ceci est un conteneur de contenu avec une largeur limitée et un espacement confortable. Remplacez ce texte par votre propre contenu."
#: patterns/layout-2-col.php
#: patterns/layout-3-col.php
msgid "Column One"
msgstr "Colonne un"
#: patterns/layout-2-col.php
msgid "Add your content here. This column takes up half the available width on larger screens and stacks on mobile devices."
msgstr "Ajoutez votre contenu ici. Cette colonne occupe la moitié de la largeur disponible sur les grands écrans et s'empile sur les appareils mobiles."
#: patterns/layout-2-col.php
#: patterns/layout-3-col.php
msgid "Column Two"
msgstr "Colonne deux"
#: patterns/layout-3-col.php
msgid "Column Three"
msgstr "Colonne trois"
#: patterns/layout-3-col.php
msgid "Add your content here. This column takes up one third of the available width on larger screens."
msgstr "Ajoutez votre contenu ici. Cette colonne occupe un tiers de la largeur disponible sur les grands écrans."
#: patterns/layout-full-width-section.php
msgid "Full Width Section Heading"
msgstr "Titre de la section pleine largeur"
#: patterns/layout-full-width-section.php
msgid "This full-width section stands out with a colored background. Use it to highlight important content, announcements, or calls to action."
msgstr "Cette section pleine largeur se distingue par un arrière-plan coloré. Utilisez-la pour mettre en valeur du contenu important, des annonces ou des appels à l'action."
#: patterns/component-card-group.php
msgid "Card One"
msgstr "Carte un"
#: patterns/component-card-group.php
msgid "Card Two"
msgstr "Carte deux"
#: patterns/component-card-group.php
msgid "Card Three"
msgstr "Carte trois"
#: patterns/component-card-group.php
msgid "Add a short description for this card. Cards are a great way to organize and present related content."
msgstr "Ajoutez une courte description pour cette carte. Les cartes sont un excellent moyen d'organiser et de présenter du contenu connexe."
#: patterns/component-accordion.php
msgid "Accordion"
msgstr "Accordéon"
#: patterns/component-accordion.php
msgid "Click on each item to expand and reveal its content."
msgstr "Cliquez sur chaque élément pour le développer et révéler son contenu."
#: patterns/component-accordion.php
msgid "Accordion Item One"
msgstr "Élément d'accordéon un"
#: patterns/component-accordion.php
msgid "This is the content for the first accordion item. You can add any blocks inside this details element to create rich, expandable content sections."
msgstr "Ceci est le contenu du premier élément d'accordéon. Vous pouvez ajouter n'importe quels blocs à l'intérieur de cet élément details pour créer des sections de contenu riches et dépliables."
#: patterns/component-accordion.php
msgid "Accordion Item Two"
msgstr "Élément d'accordéon deux"
#: patterns/component-accordion.php
msgid "This is the content for the second accordion item. Details blocks are a native HTML element that provide toggle functionality without JavaScript."
msgstr "Ceci est le contenu du deuxième élément d'accordéon. Les blocs details sont un élément HTML natif qui offre une fonctionnalité de basculement sans JavaScript."
#: patterns/component-accordion.php
msgid "Accordion Item Three"
msgstr "Élément d'accordéon trois"
#: patterns/component-accordion.php
msgid "This is the content for the third accordion item. Use accordions to organize frequently asked questions, feature lists, or any content that benefits from progressive disclosure."
msgstr "Ceci est le contenu du troisième élément d'accordéon. Utilisez les accordéons pour organiser les questions fréquentes, les listes de fonctionnalités ou tout contenu qui bénéficie d'une divulgation progressive."
#: patterns/page-about.php
msgid "About Us"
msgstr "À propos"
#: patterns/page-about.php
msgid "Learn more about who we are, what we do, and the people behind our mission."
msgstr "Apprenez-en plus sur qui nous sommes, ce que nous faisons et les personnes derrière notre mission."
#: patterns/page-about.php
msgid "Our Story"
msgstr "Notre histoire"
#: patterns/page-about.php
msgid "Founded with a passion for innovation and excellence, our journey began with a simple idea: to create meaningful solutions that make a real difference. Over the years, we have grown from a small team into a dedicated group of professionals committed to delivering outstanding results."
msgstr "Fondée avec une passion pour l'innovation et l'excellence, notre aventure a commencé avec une idée simple : créer des solutions significatives qui font une vraie différence. Au fil des années, nous sommes passés d'une petite équipe à un groupe dédié de professionnels engagés à fournir des résultats exceptionnels."
#: patterns/page-about.php
msgid "Today, we continue to push boundaries and challenge conventions. Our approach combines creative thinking with proven methodologies, ensuring that every project we undertake meets the highest standards of quality and craftsmanship."
msgstr "Aujourd'hui, nous continuons à repousser les limites et à remettre en question les conventions. Notre approche combine la pensée créative avec des méthodologies éprouvées, garantissant que chaque projet que nous entreprenons répond aux plus hauts standards de qualité et de savoir-faire."
#: patterns/page-about.php
msgid "Our Team"
msgstr "Notre équipe"
#: patterns/page-about.php
msgid "Meet the people who make it all happen."
msgstr "Rencontrez les personnes qui rendent tout cela possible."
#: patterns/page-about.php
msgid "Jane Doe"
msgstr "Jane Doe"
#: patterns/page-about.php
msgid "Founder & CEO"
msgstr "Fondatrice et PDG"
#: patterns/page-about.php
msgid "John Smith"
msgstr "John Smith"
#: patterns/page-about.php
msgid "Lead Developer"
msgstr "Développeur principal"
#: patterns/page-about.php
msgid "Emily Johnson"
msgstr "Emily Johnson"
#: patterns/page-about.php
msgid "Creative Director"
msgstr "Directrice créative"
#: patterns/page-services.php
msgid "Our Services"
msgstr "Nos services"
#: patterns/page-services.php
msgid "Professional solutions tailored to your needs."
msgstr "Des solutions professionnelles adaptées à vos besoins."
#: patterns/page-services.php
msgid "What We Offer"
msgstr "Ce que nous offrons"
#: patterns/page-services.php
msgid "We provide a wide range of services to help your business grow and succeed."
msgstr "Nous fournissons une large gamme de services pour aider votre entreprise à croître et réussir."
#: patterns/page-services.php
msgid "Design"
msgstr "Design"
#: patterns/page-services.php
msgid "Beautiful, user-centered designs that capture your brand identity and engage your audience across all platforms and devices."
msgstr "De beaux designs centrés sur l'utilisateur qui capturent l'identité de votre marque et engagent votre public sur toutes les plateformes et appareils."
#: patterns/page-services.php
msgid "Development"
msgstr "Développement"
#: patterns/page-services.php
msgid "Robust, scalable web applications built with modern technologies and best practices to ensure performance and reliability."
msgstr "Des applications web robustes et évolutives construites avec des technologies modernes et les meilleures pratiques pour garantir performance et fiabilité."
#: patterns/page-services.php
msgid "Strategy"
msgstr "Stratégie"
#: patterns/page-services.php
msgid "Data-driven strategies and consulting to help you achieve your business goals and stay ahead of the competition."
msgstr "Des stratégies basées sur les données et du conseil pour vous aider à atteindre vos objectifs commerciaux et garder une longueur d'avance sur la concurrence."
#: patterns/page-services.php
msgid "Ready to take your project to the next level? Let us help you build something great."
msgstr "Prêt à faire passer votre projet au niveau supérieur ? Laissez-nous vous aider à construire quelque chose de formidable."
#: patterns/page-services.php
msgid "View Portfolio"
msgstr "Voir le portfolio"
#: patterns/page-contact.php
msgid "We would love to hear from you. Reach out to us anytime."
msgstr "Nous serions ravis d'avoir de vos nouvelles. Contactez-nous à tout moment."
#: patterns/page-contact.php
msgid "Get in Touch"
msgstr "Prenez contact"
#: patterns/page-contact.php
msgid "123 Main Street, Suite 100, Anytown, ST 12345"
msgstr "123, rue Principale, Bureau 100, 75001 Paris"
#: patterns/page-contact.php
msgid "+1 (555) 123-4567"
msgstr "+33 1 23 45 67 89"
#: patterns/page-contact.php
msgid "Business Hours"
msgstr "Heures d'ouverture"
#: patterns/page-contact.php
msgid "Monday - Friday:"
msgstr "Lundi - Vendredi :"
#: patterns/page-contact.php
msgid "9:00 AM - 6:00 PM"
msgstr "9h00 - 18h00"
#: patterns/page-contact.php
msgid "Saturday:"
msgstr "Samedi :"
#: patterns/page-contact.php
msgid "10:00 AM - 4:00 PM"
msgstr "10h00 - 16h00"
#: patterns/page-contact.php
msgid "Sunday:"
msgstr "Dimanche :"
#: patterns/page-contact.php
msgid "Closed"
msgstr "Fermé"
#. translators: Copyright notice. %1$s: Year, %2$s: Site title.
#: patterns/footer-minimal.php
msgid "&copy; %1$s %2$s. All rights reserved."
msgstr "&copy; %1$s %2$s. Tous droits réservés."
#: patterns/footer-columns.php
msgid "A modern WordPress theme built with Bootstrap 5."
msgstr "Un thème WordPress moderne construit avec Bootstrap 5."
#: patterns/footer-columns.php
msgid "About"
msgstr "À propos"
#: patterns/footer-columns.php
msgid "This theme is proudly built with Bootstrap 5 and WordPress Full Site Editing."
msgstr "Ce thème est fièrement construit avec Bootstrap 5 et l'éditeur de site complet WordPress."
#. translators: Copyright notice. %1$s: Year, %2$s: Site title.
#: patterns/footer-columns.php
msgid "&copy; %1$s %2$s"
msgstr "&copy; %1$s %2$s"
#: views/base.html.twig
msgid "Skip to main content"
msgstr "Aller au contenu principal"
#: views/partials/header.html.twig
#: views/partials/header-centered.html.twig
#: views/partials/header-transparent.html.twig
#: views/partials/header-offcanvas.html.twig
msgid "Primary navigation"
msgstr "Navigation principale"
#: views/partials/footer.html.twig
#: views/partials/footer-columns.html.twig
msgid "Footer navigation"
msgstr "Navigation du pied de page"
#: views/partials/sidebar.html.twig
msgid "Blog sidebar"
msgstr "Barre latérale du blog"

View File

@@ -2,7 +2,7 @@
# This file is distributed under the same license as the WP Bootstrap theme.
msgid ""
msgstr ""
"Project-Id-Version: WP Bootstrap 0.2.0\n"
"Project-Id-Version: WP Bootstrap 0.3.0\n"
"Report-Msgid-Bugs-To: https://src.bundespruefstelle.ch/magdev/wp-bootstrap/issues\n"
"POT-Creation-Date: 2026-02-08 00:00+0000\n"
"MIME-Version: 1.0\n"
@@ -886,3 +886,23 @@ msgstr ""
#: patterns/footer-columns.php
msgid "&copy; %1$s %2$s"
msgstr ""
#: views/base.html.twig
msgid "Skip to main content"
msgstr ""
#: views/partials/header.html.twig
#: views/partials/header-centered.html.twig
#: views/partials/header-transparent.html.twig
#: views/partials/header-offcanvas.html.twig
msgid "Primary navigation"
msgstr ""
#: views/partials/footer.html.twig
#: views/partials/footer-columns.html.twig
msgid "Footer navigation"
msgstr ""
#: views/partials/sidebar.html.twig
msgid "Blog sidebar"
msgstr ""

View File

@@ -1,6 +1,6 @@
{
"name": "wp-bootstrap",
"version": "0.2.0",
"version": "0.3.1",
"description": "WordPress Theme built with Bootstrap 5",
"author": "Marco Graetsch <magdev3.0@gmail.com>",
"license": "GPL-2.0-or-later",
@@ -26,11 +26,12 @@
},
"scripts": {
"scss": "sass src/scss/style.scss:assets/css/style.css src/scss/editor-style.scss:assets/css/editor-style.css --load-path=node_modules",
"scss:rtl": "sass src/scss/rtl.scss:assets/css/rtl.css --style=compressed --no-source-map",
"scss:watch": "sass --watch src/scss/style.scss:assets/css/style.css src/scss/editor-style.scss:assets/css/editor-style.css --load-path=node_modules",
"postcss": "postcss assets/css/style.css --use autoprefixer cssnano -o assets/css/style.min.css --no-map",
"copy:js": "copyfiles -f node_modules/bootstrap/dist/js/bootstrap.bundle.min.js node_modules/bootstrap/dist/js/bootstrap.bundle.min.js.map assets/js/",
"copy:theme-js": "copyfiles -f src/js/dark-mode.js assets/js/",
"build": "npm run copy:js && npm run copy:theme-js && npm run scss && npm run postcss",
"build": "npm run copy:js && npm run copy:theme-js && npm run scss && npm run scss:rtl && npm run postcss",
"watch": "npm run copy:js && npm run scss:watch",
"dev": "npm run watch"
}

View File

@@ -61,6 +61,7 @@
var newTheme = currentTheme === 'dark' ? 'light' : 'dark';
localStorage.setItem(STORAGE_KEY, newTheme);
setTheme(newTheme);
announceTheme(newTheme);
});
});
});
@@ -71,4 +72,23 @@
setTheme(e.matches ? 'dark' : 'light');
}
});
/**
* Announce theme change to screen readers via a live region.
*
* @param {string} theme - 'dark' or 'light'
*/
function announceTheme(theme) {
var msg = theme === 'dark' ? 'Dark mode enabled' : 'Light mode enabled';
var el = document.getElementById('wp-bootstrap-theme-status');
if (!el) {
el = document.createElement('div');
el.id = 'wp-bootstrap-theme-status';
el.setAttribute('role', 'status');
el.setAttribute('aria-live', 'polite');
el.className = 'visually-hidden';
document.body.appendChild(el);
}
el.textContent = msg;
}
})();

View File

@@ -75,3 +75,46 @@
background: var(--bs-body-bg);
}
}
// Skip link (accessibility)
.wp-bootstrap-skip-link {
position: absolute;
top: -100%;
left: 0;
z-index: $zindex-fixed + 10;
padding: 0.5rem 1rem;
background: var(--bs-primary);
color: #fff;
text-decoration: none;
font-weight: 600;
&:focus {
top: 0;
}
}
// Post featured image
.post-thumbnail {
aspect-ratio: 16 / 9;
object-fit: cover;
width: 100%;
}
// Card thumbnail
.card-thumbnail {
aspect-ratio: 3 / 2;
object-fit: cover;
}
// Sidebar heading
.sidebar-heading {
letter-spacing: 1.6px;
}
// Hero overlay
.hero-overlay {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
opacity: 0.3;
}

11
src/scss/rtl.scss Normal file
View File

@@ -0,0 +1,11 @@
/*!
* WP Bootstrap Theme - RTL Overrides
* Right-to-left language support
*/
// Blockquote accent border (LTR uses border-left, RTL needs border-right)
.is-style-blockquote-accent {
border-left: none;
border-right: 4px solid var(--wp--preset--color--primary);
border-radius: 0.375rem 0 0 0.375rem;
}

View File

@@ -7,7 +7,7 @@ Description: A modern WordPress Block Theme built from scratch with Bootstrap 5.
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 8.3
Version: 0.2.0
Version: 0.3.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-bootstrap

86
styles/05-ember.json Normal file
View File

@@ -0,0 +1,86 @@
{
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
"version": 3,
"title": "Ember",
"settings": {
"color": {
"palette": [
{
"color": "#1c1210",
"name": "Base",
"slug": "base"
},
{
"color": "#f0e6e0",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#e85d26",
"name": "Primary",
"slug": "primary"
},
{
"color": "#a8a09c",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#4ade80",
"name": "Success",
"slug": "success"
},
{
"color": "#f87171",
"name": "Danger",
"slug": "danger"
},
{
"color": "#fbbf24",
"name": "Warning",
"slug": "warning"
},
{
"color": "#fb923c",
"name": "Info",
"slug": "info"
},
{
"color": "#2a1f1b",
"name": "Light",
"slug": "light"
},
{
"color": "#3d2117",
"name": "Dark",
"slug": "dark"
}
]
}
},
"styles": {
"elements": {
"button": {
"color": {
"background": "var:preset|color|primary",
"text": "var:preset|color|base"
},
":hover": {
"color": {
"background": "#c44b1b"
}
}
},
"link": {
"color": {
"text": "var:preset|color|primary"
},
":hover": {
"color": {
"text": "#c44b1b"
}
}
}
}
}
}

86
styles/06-arctic.json Normal file
View File

@@ -0,0 +1,86 @@
{
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
"version": 3,
"title": "Arctic",
"settings": {
"color": {
"palette": [
{
"color": "#0d1b2a",
"name": "Base",
"slug": "base"
},
{
"color": "#e0e8f0",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#38bdf8",
"name": "Primary",
"slug": "primary"
},
{
"color": "#94a3b8",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#34d399",
"name": "Success",
"slug": "success"
},
{
"color": "#fb7185",
"name": "Danger",
"slug": "danger"
},
{
"color": "#facc15",
"name": "Warning",
"slug": "warning"
},
{
"color": "#22d3ee",
"name": "Info",
"slug": "info"
},
{
"color": "#1b2838",
"name": "Light",
"slug": "light"
},
{
"color": "#0f4c75",
"name": "Dark",
"slug": "dark"
}
]
}
},
"styles": {
"elements": {
"button": {
"color": {
"background": "var:preset|color|primary",
"text": "var:preset|color|base"
},
":hover": {
"color": {
"background": "#0ea5e9"
}
}
},
"link": {
"color": {
"text": "var:preset|color|primary"
},
":hover": {
"color": {
"text": "#0ea5e9"
}
}
}
}
}
}

86
styles/07-amethyst.json Normal file
View File

@@ -0,0 +1,86 @@
{
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
"version": 3,
"title": "Amethyst",
"settings": {
"color": {
"palette": [
{
"color": "#1a1028",
"name": "Base",
"slug": "base"
},
{
"color": "#e8e0f0",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#a78bfa",
"name": "Primary",
"slug": "primary"
},
{
"color": "#9ca3af",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#6ee7b7",
"name": "Success",
"slug": "success"
},
{
"color": "#fca5a5",
"name": "Danger",
"slug": "danger"
},
{
"color": "#fde68a",
"name": "Warning",
"slug": "warning"
},
{
"color": "#c084fc",
"name": "Info",
"slug": "info"
},
{
"color": "#221538",
"name": "Light",
"slug": "light"
},
{
"color": "#3b1f6e",
"name": "Dark",
"slug": "dark"
}
]
}
},
"styles": {
"elements": {
"button": {
"color": {
"background": "var:preset|color|primary",
"text": "var:preset|color|base"
},
":hover": {
"color": {
"background": "#8b5cf6"
}
}
},
"link": {
"color": {
"text": "var:preset|color|primary"
},
":hover": {
"color": {
"text": "#8b5cf6"
}
}
}
}
}
}

79
styles/08-rose.json Normal file
View File

@@ -0,0 +1,79 @@
{
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
"version": 3,
"title": "Rose",
"settings": {
"color": {
"palette": [
{
"color": "#FFFBFC",
"name": "Base",
"slug": "base"
},
{
"color": "#2e1a21",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#be185d",
"name": "Primary",
"slug": "primary"
},
{
"color": "#78716c",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#16a34a",
"name": "Success",
"slug": "success"
},
{
"color": "#dc2626",
"name": "Danger",
"slug": "danger"
},
{
"color": "#eab308",
"name": "Warning",
"slug": "warning"
},
{
"color": "#ec4899",
"name": "Info",
"slug": "info"
},
{
"color": "#fdf2f8",
"name": "Light",
"slug": "light"
},
{
"color": "#4a1030",
"name": "Dark",
"slug": "dark"
}
]
}
},
"styles": {
"elements": {
"button": {
":hover": {
"color": {
"background": "#9d174d"
}
}
},
"link": {
":hover": {
"color": {
"text": "#9d174d"
}
}
}
}
}
}

79
styles/09-sand.json Normal file
View File

@@ -0,0 +1,79 @@
{
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
"version": 3,
"title": "Sand",
"settings": {
"color": {
"palette": [
{
"color": "#FEFCF8",
"name": "Base",
"slug": "base"
},
{
"color": "#292017",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#b45309",
"name": "Primary",
"slug": "primary"
},
{
"color": "#78716c",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#15803d",
"name": "Success",
"slug": "success"
},
{
"color": "#b91c1c",
"name": "Danger",
"slug": "danger"
},
{
"color": "#d97706",
"name": "Warning",
"slug": "warning"
},
{
"color": "#d4956b",
"name": "Info",
"slug": "info"
},
{
"color": "#f5f0e8",
"name": "Light",
"slug": "light"
},
{
"color": "#3d2c14",
"name": "Dark",
"slug": "dark"
}
]
}
},
"styles": {
"elements": {
"button": {
":hover": {
"color": {
"background": "#92400e"
}
}
},
"link": {
":hover": {
"color": {
"text": "#92400e"
}
}
}
}
}
}

79
styles/10-lavender.json Normal file
View File

@@ -0,0 +1,79 @@
{
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
"version": 3,
"title": "Lavender",
"settings": {
"color": {
"palette": [
{
"color": "#FCFBFF",
"name": "Base",
"slug": "base"
},
{
"color": "#1e1b2e",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#7c3aed",
"name": "Primary",
"slug": "primary"
},
{
"color": "#71717a",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#059669",
"name": "Success",
"slug": "success"
},
{
"color": "#dc2626",
"name": "Danger",
"slug": "danger"
},
{
"color": "#eab308",
"name": "Warning",
"slug": "warning"
},
{
"color": "#8b5cf6",
"name": "Info",
"slug": "info"
},
{
"color": "#f3f0ff",
"name": "Light",
"slug": "light"
},
{
"color": "#3b1f8e",
"name": "Dark",
"slug": "dark"
}
]
}
},
"styles": {
"elements": {
"button": {
":hover": {
"color": {
"background": "#6d28d9"
}
}
},
"link": {
":hover": {
"color": {
"text": "#6d28d9"
}
}
}
}
}
}

79
styles/11-mint.json Normal file
View File

@@ -0,0 +1,79 @@
{
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
"version": 3,
"title": "Mint",
"settings": {
"color": {
"palette": [
{
"color": "#F8FFFE",
"name": "Base",
"slug": "base"
},
{
"color": "#14291f",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#0d9488",
"name": "Primary",
"slug": "primary"
},
{
"color": "#6b7280",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#16a34a",
"name": "Success",
"slug": "success"
},
{
"color": "#dc2626",
"name": "Danger",
"slug": "danger"
},
{
"color": "#ca8a04",
"name": "Warning",
"slug": "warning"
},
{
"color": "#2dd4bf",
"name": "Info",
"slug": "info"
},
{
"color": "#ecfdf5",
"name": "Light",
"slug": "light"
},
{
"color": "#134e4a",
"name": "Dark",
"slug": "dark"
}
]
}
},
"styles": {
"elements": {
"button": {
":hover": {
"color": {
"background": "#0f766e"
}
}
},
"link": {
":hover": {
"color": {
"text": "#0f766e"
}
}
}
}
}
}

86
styles/12-slate.json Normal file
View File

@@ -0,0 +1,86 @@
{
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
"version": 3,
"title": "Slate",
"settings": {
"color": {
"palette": [
{
"color": "#0f172a",
"name": "Base",
"slug": "base"
},
{
"color": "#e2e8f0",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#3b82f6",
"name": "Primary",
"slug": "primary"
},
{
"color": "#94a3b8",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#22c55e",
"name": "Success",
"slug": "success"
},
{
"color": "#ef4444",
"name": "Danger",
"slug": "danger"
},
{
"color": "#eab308",
"name": "Warning",
"slug": "warning"
},
{
"color": "#06b6d4",
"name": "Info",
"slug": "info"
},
{
"color": "#1e293b",
"name": "Light",
"slug": "light"
},
{
"color": "#334155",
"name": "Dark",
"slug": "dark"
}
]
}
},
"styles": {
"elements": {
"button": {
"color": {
"background": "var:preset|color|primary",
"text": "var:preset|color|base"
},
":hover": {
"color": {
"background": "#2563eb"
}
}
},
"link": {
"color": {
"text": "var:preset|color|primary"
},
":hover": {
"color": {
"text": "#2563eb"
}
}
}
}
}
}

86
styles/13-mocha.json Normal file
View File

@@ -0,0 +1,86 @@
{
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
"version": 3,
"title": "Mocha",
"settings": {
"color": {
"palette": [
{
"color": "#1c1412",
"name": "Base",
"slug": "base"
},
{
"color": "#e7ddd4",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#c49a6c",
"name": "Primary",
"slug": "primary"
},
{
"color": "#a8998a",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#6ec98f",
"name": "Success",
"slug": "success"
},
{
"color": "#e87e7e",
"name": "Danger",
"slug": "danger"
},
{
"color": "#e5c07b",
"name": "Warning",
"slug": "warning"
},
{
"color": "#d19a66",
"name": "Info",
"slug": "info"
},
{
"color": "#2a201a",
"name": "Light",
"slug": "light"
},
{
"color": "#45342a",
"name": "Dark",
"slug": "dark"
}
]
}
},
"styles": {
"elements": {
"button": {
"color": {
"background": "var:preset|color|primary",
"text": "var:preset|color|base"
},
":hover": {
"color": {
"background": "#a8804f"
}
}
},
"link": {
"color": {
"text": "var:preset|color|primary"
},
":hover": {
"color": {
"text": "#a8804f"
}
}
}
}
}
}

86
styles/14-nebula.json Normal file
View File

@@ -0,0 +1,86 @@
{
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
"version": 3,
"title": "Nebula",
"settings": {
"color": {
"palette": [
{
"color": "#0a1628",
"name": "Base",
"slug": "base"
},
{
"color": "#d4e4f0",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#2dd4bf",
"name": "Primary",
"slug": "primary"
},
{
"color": "#7e9bb0",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#4ade80",
"name": "Success",
"slug": "success"
},
{
"color": "#f472b6",
"name": "Danger",
"slug": "danger"
},
{
"color": "#fbbf24",
"name": "Warning",
"slug": "warning"
},
{
"color": "#67e8f9",
"name": "Info",
"slug": "info"
},
{
"color": "#112240",
"name": "Light",
"slug": "light"
},
{
"color": "#1a365d",
"name": "Dark",
"slug": "dark"
}
]
}
},
"styles": {
"elements": {
"button": {
"color": {
"background": "var:preset|color|primary",
"text": "var:preset|color|base"
},
":hover": {
"color": {
"background": "#14b8a6"
}
}
},
"link": {
"color": {
"text": "var:preset|color|primary"
},
":hover": {
"color": {
"text": "#14b8a6"
}
}
}
}
}
}

86
styles/15-obsidian.json Normal file
View File

@@ -0,0 +1,86 @@
{
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
"version": 3,
"title": "Obsidian",
"settings": {
"color": {
"palette": [
{
"color": "#121212",
"name": "Base",
"slug": "base"
},
{
"color": "#e0e0e0",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#ef4444",
"name": "Primary",
"slug": "primary"
},
{
"color": "#a3a3a3",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#4ade80",
"name": "Success",
"slug": "success"
},
{
"color": "#fb7185",
"name": "Danger",
"slug": "danger"
},
{
"color": "#fbbf24",
"name": "Warning",
"slug": "warning"
},
{
"color": "#f97316",
"name": "Info",
"slug": "info"
},
{
"color": "#1a1a1a",
"name": "Light",
"slug": "light"
},
{
"color": "#2a2a2a",
"name": "Dark",
"slug": "dark"
}
]
}
},
"styles": {
"elements": {
"button": {
"color": {
"background": "var:preset|color|primary",
"text": "var:preset|color|base"
},
":hover": {
"color": {
"background": "#dc2626"
}
}
},
"link": {
"color": {
"text": "var:preset|color|primary"
},
":hover": {
"color": {
"text": "#dc2626"
}
}
}
}
}
}

View File

@@ -8,6 +8,8 @@
<body {{ body_class() }}>
{{ wp_body_open() }}
<a class="wp-bootstrap-skip-link" href="#main-content">{{ __('Skip to main content') }}</a>
{% block header %}
{% include 'partials/header.html.twig' %}
{% endblock %}

View File

@@ -1,9 +1,9 @@
<article class="card h-100">
{% if post.thumbnail %}
<a href="{{ post.url }}">
<img src="{{ post.thumbnail }}" class="card-img-top"
<img src="{{ post.thumbnail }}" class="card-img-top card-thumbnail"
alt="{{ post.title|e('html_attr') }}"
style="aspect-ratio: 3/2; object-fit: cover;">
loading="lazy">
</a>
{% endif %}
<div class="card-body">

View File

@@ -1,7 +1,7 @@
<article class="card mb-4 border-0 border-bottom rounded-0 pb-4">
{% if post.thumbnail %}
<a href="{{ post.url }}">
<img src="{{ post.thumbnail }}" class="card-img-top rounded" alt="{{ post.title|e('html_attr') }}">
<img src="{{ post.thumbnail }}" class="card-img-top rounded" alt="{{ post.title|e('html_attr') }}" loading="lazy">
</a>
{% endif %}
<div class="card-body px-0">

View File

@@ -5,7 +5,7 @@
{% block content %}
<section class="bg-primary text-white py-5 mb-5{% if post.thumbnail %} position-relative overflow-hidden{% endif %}">
{% if post.thumbnail %}
<div class="position-absolute top-0 start-0 w-100 h-100" style="background: url('{{ post.thumbnail }}') center/cover no-repeat; opacity: 0.3;"></div>
<div class="hero-overlay position-absolute top-0 start-0 w-100 h-100" style="background-image: url('{{ post.thumbnail|e('html_attr') }}');"></div>
{% endif %}
<div class="container position-relative py-5 text-center">
<h1 class="display-4 fw-bold">{{ post.title }}</h1>

View File

@@ -3,7 +3,7 @@
{% block content %}
<div class="container">
<h1 class="mb-4">
{{ __('Search results for: %s')|format('<em>' ~ search_query ~ '</em>')|raw }}
{{ __('Search results for: %s')|format('<em>' ~ search_query|e('html') ~ '</em>')|raw }}
</h1>
{% include 'partials/search-form.html.twig' %}

View File

@@ -10,9 +10,9 @@
{% if post.thumbnail %}
<figure class="mb-4">
<img src="{{ post.thumbnail }}" class="img-fluid rounded"
<img src="{{ post.thumbnail }}" class="img-fluid rounded post-thumbnail"
alt="{{ post.title|e('html_attr') }}"
style="aspect-ratio: 16/9; object-fit: cover; width: 100%;">
loading="lazy">
</figure>
{% endif %}

View File

@@ -1,13 +1,13 @@
<div class="comment d-flex gap-3 mb-4{% if depth > 0 %} ms-5{% endif %}" id="comment-{{ comment.id }}">
<div class="flex-shrink-0">
<img src="{{ comment.avatar_url }}" alt="{{ comment.author }}"
class="rounded-circle" width="40" height="40">
class="rounded-circle" width="40" height="40" loading="lazy">
</div>
<div class="flex-grow-1">
<div class="d-flex align-items-center gap-2 mb-1">
<strong class="small">
{% if comment.author_url %}
<a href="{{ comment.author_url }}" class="text-decoration-none text-body" rel="nofollow">
<a href="{{ esc_url(comment.author_url) }}" class="text-decoration-none text-body" rel="nofollow">
{{ comment.author }}
</a>
{% else %}

View File

@@ -9,7 +9,8 @@
<div class="col-lg-4 mb-4 mb-lg-0">
<h5 class="fw-bold">{{ __('Navigation') }}</h5>
{% if footer_menu|length > 0 %}
<ul class="list-unstyled">
<nav aria-label="{{ __('Footer navigation') }}">
<ul class="list-unstyled">
{% for item in footer_menu %}
<li class="mb-1">
<a href="{{ item.url }}" class="text-body-secondary text-decoration-none">
@@ -17,7 +18,8 @@
</a>
</li>
{% endfor %}
</ul>
</ul>
</nav>
{% endif %}
</div>
<div class="col-lg-4">

View File

@@ -7,7 +7,8 @@
</div>
<div class="col-md-6 text-md-end">
{% if footer_menu|length > 0 %}
<ul class="list-unstyled">
<nav aria-label="{{ __('Footer navigation') }}">
<ul class="list-unstyled">
{% for item in footer_menu %}
<li>
<a href="{{ item.url }}" class="text-body-secondary text-decoration-none">
@@ -15,7 +16,8 @@
</a>
</li>
{% endfor %}
</ul>
</ul>
</nav>
{% endif %}
</div>
</div>

View File

@@ -1,5 +1,5 @@
<header>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<nav class="navbar navbar-expand-lg bg-body-tertiary" aria-label="{{ __('Primary navigation') }}">
<div class="container flex-column">
<a class="navbar-brand fw-bold mb-2" href="{{ site.url }}">
{{ site.name }}
@@ -30,6 +30,7 @@
<li>
<a class="dropdown-item{{ child.active ? ' active' : '' }}"
href="{{ child.url }}"
{% if child.active %}aria-current="page"{% endif %}
{% if child.target %}target="{{ child.target }}"{% endif %}>
{{ child.title }}
</a>

View File

@@ -1,5 +1,5 @@
<header>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<nav class="navbar navbar-expand-lg bg-body-tertiary" aria-label="{{ __('Primary navigation') }}">
<div class="container">
<a class="navbar-brand fw-bold" href="{{ site.url }}">
{{ site.name }}
@@ -34,6 +34,7 @@
<li>
<a class="dropdown-item{{ child.active ? ' active' : '' }}"
href="{{ child.url }}"
{% if child.active %}aria-current="page"{% endif %}
{% if child.target %}target="{{ child.target }}"{% endif %}>
{{ child.title }}
</a>

View File

@@ -1,5 +1,5 @@
<header class="position-absolute w-100" style="z-index: 1030;">
<nav class="navbar navbar-expand-lg navbar-dark">
<nav class="navbar navbar-expand-lg navbar-dark" aria-label="{{ __('Primary navigation') }}">
<div class="container">
<a class="navbar-brand fw-bold" href="{{ site.url }}">
{{ site.name }}
@@ -27,6 +27,7 @@
<li>
<a class="dropdown-item{{ child.active ? ' active' : '' }}"
href="{{ child.url }}"
{% if child.active %}aria-current="page"{% endif %}
{% if child.target %}target="{{ child.target }}"{% endif %}>
{{ child.title }}
</a>

View File

@@ -1,5 +1,5 @@
<header>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<nav class="navbar navbar-expand-lg bg-body-tertiary" aria-label="{{ __('Primary navigation') }}">
<div class="container">
<a class="navbar-brand fw-bold" href="{{ site.url }}">
{{ site.name }}
@@ -27,6 +27,7 @@
<li>
<a class="dropdown-item{{ child.active ? ' active' : '' }}"
href="{{ child.url }}"
{% if child.active %}aria-current="page"{% endif %}
{% if child.target %}target="{{ child.target }}"{% endif %}>
{{ child.title }}
</a>

View File

@@ -1,7 +1,7 @@
<aside>
<aside aria-label="{{ __('Blog sidebar') }}">
{% if sidebar.recent_posts is defined and sidebar.recent_posts|length > 0 %}
<div class="mb-4">
<h3 class="h6 text-uppercase fw-semibold" style="letter-spacing: 1.6px">
<h3 class="sidebar-heading h6 text-uppercase fw-semibold">
{{ __('Recent Posts') }}
</h3>
<ul class="list-unstyled">
@@ -19,7 +19,7 @@
{% endif %}
<div class="mb-4">
<h3 class="h6 text-uppercase fw-semibold" style="letter-spacing: 1.6px">
<h3 class="sidebar-heading h6 text-uppercase fw-semibold">
{{ __('Search') }}
</h3>
{% include 'partials/search-form.html.twig' %}
@@ -29,7 +29,7 @@
{% if sidebar.tags is defined and sidebar.tags|length > 0 %}
<div class="mb-4">
<h3 class="h6 text-uppercase fw-semibold" style="letter-spacing: 1.6px">
<h3 class="sidebar-heading h6 text-uppercase fw-semibold">
{{ __('Tags') }}
</h3>
<div>