User contributions for Mngr
Appearance
11 May 2026
- 13:1913:19, 11 May 2026 diff hist −17 Drupal:Content No edit summary Tag: Reverted
- 12:5412:54, 11 May 2026 diff hist +17 Drupal:Content No edit summary Tag: Reverted
- 12:5312:53, 11 May 2026 diff hist 0 Drupal:Content No edit summary Tag: Reverted
- 12:5312:53, 11 May 2026 diff hist +4 Drupal:Content No edit summary Tag: Reverted
- 12:5212:52, 11 May 2026 diff hist −2 Drupal:Content No edit summary Tag: Manual revert
- 12:5212:52, 11 May 2026 diff hist +2 Drupal:Content No edit summary Tag: Reverted
- 10:2510:25, 11 May 2026 diff hist +7,774 N Drupal:PubModel/Chapter navigation, Teaser Metadata and Views-Based Rendering Strategy Created page with "= Chapter Navigation, Teaser Metadata and Views-Based Rendering Strategy = == Goal == Define the final architectural strategy for: * recursive Chapter navigation * teaser metadata reuse * homepage carousel rendering * card-based Chapter detail pages * Views integration * curated teaser image selection This document consolidates the final design decisions before large-scale data ingestion begins. --- = IMPORTANT EVOLUTION OF THE MODEL = The original Chapter model e..."
- 09:1309:13, 11 May 2026 diff hist +5,729 Project:Data Model/Recursive Chapter Model for Publication reasons No edit summary current
- 08:5808:58, 11 May 2026 diff hist +6,486 N Project:Data Model/Recursive Chapter Model for Publication reasons Created page with "= Controlled Recursive Chapter Model for Historical Publication Structure = == Goal == Extend the existing Chapter entity model with a controlled recursive structure limited to ONE additional level. Purpose: * preserve simplicity * maintain chronological clarity * support richer publication navigation * support card-based historical detail pages * avoid unnecessary additional entities This model is intended for the public editorial/publication frontend. --- = ORIG..."
- 08:3908:39, 11 May 2026 diff hist +6,073 N Drupal:Pages/CSS and TWIG Organisation Strategy Created page with "= Drupal 11 + Barrio Subtheme CSS Organisation Strategy = == Goal == Move from a single monolithic CSS file: <pre> barrio-custom.css </pre> toward a modular CSS architecture adapted for: * Paragraphs * reusable publication components * long-term maintainability * successor-friendly documentation * scalable editorial frontend development The existing homepage CSS: * panorama hero * homepage carousel * homepage-specific adjustments may remain temporarily inside: <..."
- 08:3208:32, 11 May 2026 diff hist +7,532 N Drupal:Overlay/Historical Card System Created page with "= Drupal 11 + Paragraphs + Bootstrap 5 Historical Card System = == Goal == Create a reusable Paragraph component for the public publication frontend. The component displays: * a historical image * overlay text when the mouse hovers over the image * an icon link to a more detailed page * Bootstrap 5 compatible layout * reusable editorial presentation block This component is intended as one of the first reusable publication/display Paragraphs. --- = CONCEPTUAL ARCHI..." Tag: Visual edit: Switched
10 May 2026
- 15:5715:57, 10 May 2026 diff hist +1,296 Drupal:Pages/Banner No edit summary
- 15:5115:51, 10 May 2026 diff hist +4,824 N Drupal:Pages/Banner Created page with "= Drupal 11 + Barrio Subtheme Panorama Banner Tutorial = == Goal == Create a full-width panoramic hero banner on the homepage of a Drupal 11.3.8 website using a Barrio subtheme. Image used: <nowiki>Oostende-pano.webp</nowiki> The banner will: * span the full browser width * be responsive on desktop/tablet/mobile * work cleanly with Barrio/Bootstrap * avoid block-wrapper issues * use modern CSS instead of fragile inline HTML --- = STEP 1 — Upload the panorama im..."
- 07:5907:59, 10 May 2026 diff hist −2 Drupal:Content No edit summary Tag: Manual revert
- 07:5807:58, 10 May 2026 diff hist +2 Drupal:Content No edit summary Tag: Reverted
- 07:5607:56, 10 May 2026 diff hist −1 Drupal:Content No edit summary
4 May 2026
- 11:3711:37, 4 May 2026 diff hist +213 Drupal:Pages/Carousel CSS →The order of the snippets is important current Tag: Visual edit: Switched
- 11:3111:31, 4 May 2026 diff hist +1,475 N Drupal:Pages/Carousel CSS Created page with "= CSS used for the carousel = == The order of the snippets is important == <pre> →Override Bootstrap 5's default long bars: .carousel-indicators [data-bs-target] { background-color: #fff !important; →white: width: 10px !important; height: 10px !important; border-radius: 50% !important; →make them round: opacity: 0.7; margin: 0 4px; →spacing between dots: } .carousel-item img { object-fit: cover; width: 100%; height: 100%; } .carousel-..."
- 11:2511:25, 4 May 2026 diff hist −495 Drupal:Pages/CSS - rem vs px No edit summary current
- 11:2511:25, 4 May 2026 diff hist −597 Drupal:Pages/CSS - rem vs px No edit summary Tag: Manual revert
- 11:2111:21, 4 May 2026 diff hist +597 Drupal:Pages/CSS - rem vs px No edit summary Tag: Reverted
- 11:1911:19, 4 May 2026 diff hist −56 Drupal:Pages/CSS - rem vs px No edit summary
- 11:1811:18, 4 May 2026 diff hist +2,652 N Drupal:Pages/CSS - rem vs px Created page with "= CSS Units in Practice – Understanding rem vs px = == Objective == Understand the difference between `rem` and `px`, and how to use them effectively in modern web design. --- == What is rem == `rem` means: <pre> root em </pre> It is based on the font size of the root element (`html`). --- === Default Behavior === In most browsers: <pre> 1rem = 16px </pre> Examples: * 0.5rem ≈ 8px * 1rem = 16px * 1.5rem ≈ 24px * 2rem = 32px --- === Key Advantage ===..."
3 May 2026
- 16:4816:48, 3 May 2026 diff hist +4,446 N Drupal:Pages/Bootstrap 5 Carousel classes Created page with "= Bootstrap 5 Carousel – Class Reference for Drupal 11.3.8 (Views Bootstrap + Barrio) = This document explains all HTML classes used by the Bootstrap 5 Carousel as rendered by the '''Views Bootstrap''' module in '''Drupal 11.3.8''' using the '''Bootstrap Barrio''' theme. It consolidates information from Bootstrap, Views Bootstrap, and Barrio into a single reference for maintainers and contributors. == 1. Carousel Wrapper == ; <code>.carousel</code> : Main carousel..." current
- 13:0013:00, 3 May 2026 diff hist +2,818 N Drupal:Pages/Layout issues Created page with "= Drupal – Managing Different Layouts for Different Pages = == Objective == Understand how to display different layouts for different pages in Drupal, and choose the appropriate method. --- == Overview == Drupal provides two main approaches: 1. Block visibility (simple control) 2. Layout Builder (structured layouts) Each has its use case. --- == Option 1 – Block Visibility == === Principle === Blocks are placed globally, but can be shown or hidden depending..." current
- 09:4509:45, 3 May 2026 diff hist +15 Drupal:Barrio/Subtheme No edit summary current Tag: Visual edit
- 09:4009:40, 3 May 2026 diff hist +7 Drupal:Barrio/Subtheme No edit summary Tag: Visual edit
- 09:3809:38, 3 May 2026 diff hist +13 Drupal:Barrio/Subtheme No edit summary Tag: Visual edit
- 08:5808:58, 3 May 2026 diff hist +2,572 Drupal:Barrio/Subtheme No edit summary
- 08:5008:50, 3 May 2026 diff hist +2,546 N Drupal:Barrio/Subtheme Created page with "= Barrio Custom CSS (Drupal 11.3.8) = == Overview == Gin provides a convenience file named `gin-custom.css` that is automatically loaded when present. '''Barrio does not provide an equivalent mechanism.''' Barrio follows the classic Drupal theming pattern: → All custom CSS must live in a subtheme, declared through a library. This is intentional. Barrio is a front‑end framework theme and avoids adding extra override layers. == Why Barrio Has No “Magic” Custom C..."
- 08:2608:26, 3 May 2026 diff hist +867 Drupal:Barrio/Custom CSS infra No edit summary current
- 08:2208:22, 3 May 2026 diff hist +2,468 N Drupal:Barrio/Custom CSS infra Created page with "= Drupal – Adding Custom CSS in a Theme (Bootstrap Barrio) = == Objective == Add custom CSS to control layout (e.g. carousel behavior) in a clean and reusable way. This method integrates CSS into the theme, ensuring: * consistency * maintainability * no hacks or temporary solutions --- == Principle == Custom CSS should be added at the **theme level**, not inside Views or content. This ensures: * global availability * clear separation between content and present..."
- 08:2108:21, 3 May 2026 diff hist 0 m Drupal:Barrio/Buttons Barrio vs Gin Mngr moved page Drupal:Drupal:Barrio/Buttons Barrio vs Gin to Drupal:Barrio/Buttons Barrio vs Gin without leaving a redirect current
- 08:2008:20, 3 May 2026 diff hist 0 m Drupal:Barrio/Buttons Barrio vs Gin Mngr moved page Drupal:/Barrio/Buttons Barrio vs Gin to Drupal:Drupal:Barrio/Buttons Barrio vs Gin without leaving a redirect
- 08:1908:19, 3 May 2026 diff hist 0 m Drupal:Barrio/Buttons Barrio vs Gin Mngr moved page Drupal:Buttons Barrio vs Gin to Drupal:/Barrio/Buttons Barrio vs Gin without leaving a redirect
- 08:1808:18, 3 May 2026 diff hist 0 m Drupal:Barrio/Buttons Mngr moved page Drupal:Barrio Front End template/Buttons to Drupal:Barrio/Buttons without leaving a redirect current
- 08:1808:18, 3 May 2026 diff hist 0 m Drupal:Barrio Mngr moved page Drupal:Barrio Front End template to Drupal:Barrio without leaving a redirect current
2 May 2026
- 19:5619:56, 2 May 2026 diff hist +1,638 Drupal:Pages/Display Image via Referenced Asset Guide No edit summary current
- 19:5019:50, 2 May 2026 diff hist +3,395 N Drupal:Paragraphs/Carousel Styling & Paragraph Integration Created page with "= Drupal Carousel Styling & Paragraph Integration – Practical Guide = == Objective == This document explains: * How to apply Bootstrap styling in a Drupal View (Carousel) * How to integrate a View into a Paragraph (for flexible page building) This supports the transition from: <pre> Working solution → Structured, reusable solution </pre> --- == Part 1 – Applying Bootstrap Classes in Views == === Principle === In Drupal, you do NOT directly edit HTML. Instea..."
1 May 2026
- 20:2920:29, 1 May 2026 diff hist +3,157 N Drupal:Pages/Display Image via Referenced Asset Guide Created page with "= Drupal Views – Displaying an Image via Referenced Asset (Step-by-Step Guide) = == Objective == Display an image in a View when the image is not directly on the content, but stored via: <pre> Chapter → Asset (entity reference) → Media → Image </pre> This guide explains how to correctly configure **relationships in Views** to retrieve the image. --- == Concept == Drupal Views does NOT automatically follow multiple entity references. You must explicitly defi..."
- 13:5113:51, 1 May 2026 diff hist +162 Drupal:Overlay/Cards No edit summary
- 13:5013:50, 1 May 2026 diff hist +228 Drupal:Pages/Frontend landing page No edit summary current
- 13:2613:26, 1 May 2026 diff hist +3,475 N Drupal:Paragraphs/Usage Guide Created page with "= Drupal Paragraph Usage Guide – Page Building for Historians = == Objective == Provide clear guidance on how to use Paragraphs to build pages in a consistent, simple, and user-friendly way. This ensures: * clean page structure * predictable layout * no clutter * easy editing for historians --- == General Principle == Each Paragraph has '''one clear purpose'''. Do NOT mix multiple purposes in one paragraph. --- == Available Paragraph Types == The system inclu..."
- 12:5712:57, 1 May 2026 diff hist +2,915 N Drupal:Pages/Detailed page Created page with "= Drupal Detail Page Layout (Content Display) – Implementation Guide = == Objective == Define a clean and readable layout for detail pages (e.g. Chapter, Asset, Event), ensuring: * Clear presentation of content * Strong focus on images and context * Easy navigation and understanding * No clutter or unnecessary UI elements --- == Conceptual Approach == <pre> Image → Title → Key information → Description → Related content </pre> The page should feel: * cal..." current
- 12:5512:55, 1 May 2026 diff hist +3,083 N Drupal:Overlay/Cards Created page with "= Drupal Image Overlay Cards (Bootstrap / Views) – Implementation Guide = == Objective == Create a grid of images where: * Each image represents a content item (e.g. Chapter, Asset, Event) * Hovering shows an overlay with: * Title * Short description * Clicking the image opens the detail page This must be implemented using Drupal Views and Bootstrap (Barrio), with minimal or no custom code. --- == Conceptual Approach == <pre> Content → View → Bootstrap C..."
- 12:5312:53, 1 May 2026 diff hist +3,243 N Drupal:Pages/Frontend landing page Created page with "= Drupal Homepage Carousel (Chapters) – Implementation Guide = == Objective == Create a homepage carousel displaying “Chapters” with: * Image * Title * Short description * Clickable link to detail page This should be implemented using Drupal UI, Views, and Bootstrap (Barrio theme), without custom coding. --- == Conceptual Approach == The solution follows this structure: <pre> Content → View → Bootstrap Carousel → Homepage Block </pre> We reuse the exi..."
29 April 2026
- 16:5416:54, 29 April 2026 diff hist −454 Drupal:C-Modules/Tweaks/PDF-Thumbnails-Explained-Details →Troubleshooting Summary current
- 16:5316:53, 29 April 2026 diff hist −500 Drupal:C-Modules/Tweaks/PDF-Thumbnails-Explained-Details →Component Overview
- 16:5016:50, 29 April 2026 diff hist +6,264 N Drupal:C-Modules/Tweaks/PDF-Thumbnails-Explained-Details Created page with "== Drupal Module: heritage_tweaks – PDF Thumbnail System == === Purpose === This module implements immediate thumbnail generation for PDF media items. It avoids: * cron dependencies * delayed processing * unstable contrib modules --- === Module Structure === <pre> web/modules/custom/heritage_tweaks/ │ ├── heritage_tweaks.module ├── heritage_tweaks.services.yml │ └── src/ ├── Plugin/ │ └── QueueWorker/ │..."
- 16:4716:47, 29 April 2026 diff hist 0 m Drupal:C-Modules/Tweaks/PDF-Thumbnails-Explained Mngr moved page Drupal:C-Modules/Tweaks/Explained to Drupal:C-Modules/Tweaks/PDF-Thumbnails-Explained without leaving a redirect current