<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
    <meta charset="utf-8"> <!-- utf-8 works for most cases -->
    <meta name="viewport" content="width=device-width"> <!-- Forcing initial-scale shouldn't be necessary -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- Use the latest (edge) version of IE rendering engine -->
    <meta name="x-apple-disable-message-reformatting">  <!-- Disable auto-scale in iOS 10 Mail entirely -->
    <meta name="format-detection" content="telephone=no,address=no,email=no,date=no,url=no"> <!-- Tell iOS not to automatically link certain text strings. -->
    <meta name="color-scheme" content="light">
    <meta name="supported-color-schemes" content="light">
    <title>Program MediaWiki Users and Developers Conference Fall 2025</title> <!-- The title tag shows in email notifications, like Android 4.4. -->

    <!-- What it does: Makes background images in 72ppi Outlook render at correct size. -->
    <!--[if gte mso 9]>
    <xml>
        <o:OfficeDocumentSettings>
            <o:AllowPNG/>
            <o:PixelsPerInch>96</o:PixelsPerInch>
        </o:OfficeDocumentSettings>
    </xml>
    <![endif]-->

    <!-- Web Font / @font-face : BEGIN -->
    <!-- NOTE: If web fonts are not required, lines 23 - 41 can be safely removed. -->

    <!-- Desktop Outlook chokes on web font references and defaults to Times New Roman, so we force a safe fallback font. -->
    <!--[if mso]>
    <style>
        * {
            font-family: Arial, Sans-serrif !important;
        }
    </style>
    <![endif]-->

    <!-- All other clients get the webfont reference; some will render the font and others will silently fail to the fallbacks. More on that here: http://stylecampaign.com/blog/2015/02/webfont-support-in-email/ -->
    <!--[if !mso]><!-->
    <!-- insert web font reference, eg: <link href='https://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'> -->
    <!--<![endif]-->

    <!-- Web Font / @font-face : END -->

    <!-- CSS Reset : BEGIN -->
    <style>

                /* What it does: Tells the email client that only light styles are provided but the client can transform them to dark. A duplicate of meta color-scheme meta tag above. */
                :root {
                        color-scheme: light;
                        supported-color-schemes: light;
                }

                /* What it does: Remove spaces around the email design added by some email clients. */
                /* Beware: It can remove the padding / margin and add a background color to the compose a reply window. */
                html,
                body {
                        margin: 0 auto !important;
                        padding: 0 !important;
                        height: 100% !important;
                        width: 100% !important;
                }

                /* What it does: Stops email clients resizing small text. */
                * {
                        -ms-text-size-adjust: 100%;
                        -webkit-text-size-adjust: 100%;
                }

                /* What it does: Centers email on Android 4.4 */
                div[style*="margin: 16px 0"] {
                        margin: 0 !important;
                }
                /* What it does: forces Samsung Android mail clients to use the entire viewport */
                #MessageViewBody, #MessageWebViewDiv{
                        width: 100% !important;
                }

                /* What it does: Stops Outlook from adding extra spacing to tables. */
                table,
                td {
                        mso-table-lspace: 0pt !important;
                        mso-table-rspace: 0pt !important;
                }

                /* What it does: Fixes webkit padding issue. */
                table {
                        border-spacing: 0 !important;
                        border-collapse: collapse !important;
                        table-layout: fixed !important;
                        margin: 0 auto !important;
                }

                /* What it does: Uses a better rendering method when resizing images in IE. */
                img {
                        -ms-interpolation-mode:bicubic;
                }

                /* What it does: Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */
                a {
                        text-decoration: none;
                }

                /* What it does: A work-around for email clients meddling in triggered links. */
                a[x-apple-data-detectors],  /* iOS */
                .unstyle-auto-detected-links a,
                .aBn {
                        border-bottom: 0 !important;
                        cursor: default !important;
                        color: inherit !important;
                        text-decoration: none !important;
                        font-size: inherit !important;
                        font-family: inherit !important;
                        font-weight: inherit !important;
                        line-height: inherit !important;
                }

                /* What it does: Prevents Gmail from changing the text color in conversation threads. */
                .im {
                        color: inherit !important;
                }

                /* What it does: Prevents Gmail from displaying a download button on large, non-linked images. */
                .a6S {
                        display: none !important;
                        opacity: 0.01 !important;
                }
                /* If the above doesn't work, add a .g-img class to any image in question. */
                img.g-img + div {
                        display: none !important;
                }

                /* What it does: Removes right gutter in Gmail iOS app: https://github.com/TedGoas/Cerberus/issues/89  */
                /* Create one of these media queries for each additional viewport size you'd like to fix */

                /* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
                @media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
                        u ~ div .email-container {
                                min-width: 320px !important;
                        }
                }
                /* iPhone 6, 6S, 7, 8, and X */
                @media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
                        u ~ div .email-container {
                                min-width: 375px !important;
                        }
                }
                /* iPhone 6+, 7+, and 8+ */
                @media only screen and (min-device-width: 414px) {
                        u ~ div .email-container {
                                min-width: 414px !important;
                        }
                }

    </style>
    <!-- CSS Reset : END -->

    <!-- Progressive Enhancements : BEGIN -->
    <style>

                /* What it does: Hover styles for buttons */
                .button-td,
                .button-a {
                        transition: all 100ms ease-in;
                }
                .button-td-primary:hover {
                        background: #161C2D !important;
                        border-color: #161C2D !important;
                }
                .button-a-primary:hover {
                        background: #97AC17 !important;
                        border-color: #97AC17 !important;
                }

                /* Media Queries */
                @media screen and (max-width: 640px) {

                        /* What it does: Forces table cells into full-width rows. */
                        .stack-column,
                        .stack-column-center {
                                display: block !important;
                                width: 100% !important;
                                max-width: 100% !important;
                                direction: ltr !important;
                        }
                        /* And center justify these ones. */
                        .stack-column-center {
                                text-align: center !important;
                        }

                        /* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */
                        .center-on-narrow {
                                text-align: center !important;
                                display: block !important;
                                margin-left: auto !important;
                                margin-right: auto !important;
                                float: none !important;
                        }
                        table.center-on-narrow {
                                display: inline-block !important;
                        }

                        /* What it does: Adjust typography on small screens to improve readability */
                        .email-container p {
                                font-size: 17px !important;
                        }
                }
    </style>
    <!-- Progressive Enhancements : END -->

</head>
<!--
        The email background color (#222222) is defined in three places:
        1. body tag: for most email clients
        2. center tag: for Gmail and Inbox mobile apps and web versions of Gmail, GSuite, Inbox, Yahoo, AOL, Libero, Comcast, freenet, Mail.ru, Orange.fr
        3. mso conditional: For Windows 10 Mail
-->
<body width="100%" style="margin: 0; padding: 0 !important; mso-line-height-rule: exactly; background-color: #000000;">
<center role="article" aria-roledescription="email" lang="en" style="width: 100%; background-color: #000000;">
    <!--[if mso | IE]>
    <table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="background-color: #161C2D;">
        <tr>
            <td>
    <![endif]-->

    <!-- Visually Hidden Preheader Text : BEGIN -->
    <div style="max-height:0px; height:0px; display:none; overflow:hidden; mso-hide:all;" aria-hidden="true">
        Time and date for the Wikibase Solutions presentations
    </div>
    <!-- Visually Hidden Preheader Text : END -->

    <!-- Create white space after the desired preview text so email clients don’t pull other distracting text into the inbox preview. Extend as necessary. -->
    <!-- Preview Text Spacing Hack : BEGIN -->
    <div style="display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: Verdana, Arial, sans-serif;">
        ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ 
    </div>
    <!-- Preview Text Spacing Hack : END -->

    <!--
        Set the email width. Defined in two places:
        1. max-width for all clients except Desktop Windows Outlook, allowing the email to squish on narrow but never go wider than 680px.
        2. MSO tags for Desktop Windows Outlook enforce a 680px width.
        Note: The Fluid and Responsive templates have a different width (600px). The hybrid grid is more "fragile", and I've found that 680px is a good width. Change with caution.
    -->
    <div style="max-width: 680px; margin: 0 auto;" class="email-container">
        <!--[if mso]>
        <table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="680">
            <tr>
                <td>
        <![endif]-->

        <!-- Email Body : BEGIN -->
        <table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: auto;">
            <!-- Email Header : BEGIN -->
            <tr>
                <td class="wbs-logo" style="padding: 20px 0; text-align: center; background-color:#000000 !important;">
                    <img src="cid:7098a40199536f46bdaea141020b301e" width="300" height="75" alt="Wikibase Solutions Logo" border="0" style="height: auto; font-family: Arial, Sans-serrif; font-size: 15px; line-height: 15px; color: #555555;">
                </td>
            </tr>
            <!-- Email Header : END -->
            <!-- 1 Column Text : BEGIN -->
            <tr>
                <td style="background-color: #161C2D;">
                    <table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
                        <tr>
                            <td style="padding: 20px; font-family: sans-serif; font-size: 25px; font-weight: 600; line-height: 25px; color: #E0E0E0;">
                                <p style="margin: 0 0 0 0;">Newsletter</p>
                            </td>
                            <td style="padding: 20px; font-family: sans-serif; font-size: 20px; font-weight: 600; line-height: 25px; color: #E0E0E0; text-align: right;">
                                <p style="margin: 0 0 0 0;">MediaWiki</p>
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
            <!-- 1 Column Text : END -->

            <!-- 1 Column Text + Button : END -->

            <!-- Hero Image, Flush : BEGIN -->
            <tr>
                <td id="dev-log" style="padding:15px 0;">
                    <img src="cid:3357bc7f6ef37e1e887eff49b46f6178" width="680" height="" alt="Official Mudcon Spring 2025 logo" border="0" style="width: 100%; max-width: 680px; height: auto; font-family: Arial, Sans-serrif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; display: block;" class="g-img">
                </td>
            </tr>
            <!-- Hero Image, Flush : END -->

            <!-- 1 Column Text + Button : BEGIN -->
            <tr>
                <td style="background-color: #161C2D;">
                    <table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
                        <tr>
                            <td style="padding: 20px 20px 0px 20px; font-family: Verdana, Arial, sans-serif; font-size: 16px; line-height: 25px; color: #E0E0E0;">
                                <!--<h1 style="margin: 0 0 10px; font-size: 22px; line-height: 30px; color: #5079B5; font-weight: 600;">EMWCon 2022</h1>-->
                                <p style="margin: 0 0 10px 0; font-weight:normal;">The <i>MediaWiki Users and Developers Conference</i> will be held October 28-30 at the Leibnizhaus in Hannover, Germany.
                                    </p>
                                <p style="margin: 0 0 10px 0; font-weight:normal;">
                                <strong>Wikibase Solutions</strong> is sponsoring this event and will hold some interesting talks!<br><br>
                            </p>
                                <div style="border:1px dotted #c6c6c6;padding: 15px; background-color:#232c47;">
                                    <h3>Wikibase Solutions talks</h3>
                                    <ul style="list-style: none !important;">
                                        <br><li><strong>Tuesday, October 28, 2025</strong></li>
                                        <ul style="list-style: none !important;">
                                            <br><li style="list-style: disc !important;"><strong>10:00 CET : Create a knowledgebase with Open CSP tutorial</strong> - Charlot Cobben
                                                <br><i>A very quick and easy to follow tutorial on how to create a Knowledge Base with Open CSP</i>
                                            </li>
                                            <br><li style="list-style: disc !important;"><strong>15:25 CET : New in FlexForm 2.6.x</strong> - Charlot Cobben
                                                <br><i>We've added some new features to FlexForm especially for really large wikis </i>
                                            </li>
                                            <br><li style="list-style: disc !important;"><strong>15:40 CET : WSTextInsights</strong> - Charlot Cobben
                                                <br><i>A very small extension that can be used to find parsoid incompatible parser functions</i>
                                            </li>

                                        </ul>
                                        <br> <li><strong>Wednesday, October 29, 2025</strong></li>
                                        <ul style="list-style: none !important;">
                                            <br><li style="list-style: disc !important;"><strong>13:30 CET : Content Management System</strong> - Charlot Cobben
                                                <br><i>Creating a content management system in (semantic) MediaWiki</i>
                                            </li>
                                            <br><li style="list-style: disc !important;"><strong>13:50 CET : Document Management with WikiSearch</strong> - Jimmy van Delft
                                                <br><i>A demo‐driven talk showing how Wikibase DMS makes document management fast, secure, and intuitive. Learn how metadata, search & filter facets, previews, version control, and ISO-27001 compliance work </i>
                                            </li>
                                        </ul>
                                        <br><li><strong>Thursday, October 30, 2025</strong></li>
                                        <ul style="list-style: none !important;">
                                            <br><li style="list-style: disc !important;"><strong>11:00 CET : Semantic MediaWiki: Maintenance Risks and Future Outlook</strong> - Marijn van Wezel
                                                <br><i>Risk analysis on using Semantic MediaWiki, and short discussion about the future of development. </i>
                                            </li>
                                        </ul>
                                    </ul>
                                </div>
                                <p><strong>More information on the MediaWiki Users and Developers Conference</strong><br>
                                <ul>
                                    <li><a style="color:#ffff00;" href="https://i.wikibase.nl/lists/lt.php?tid=Lk8KUgNUVQEDVh9RAlUFHABSAgEbVFUGBUxVBgZWWV8DAgwCU1IfCFAEBFMIAVYcUlQBVhsCUFYATF0FAQRMW14HAQJXAlQGVQVTTgMGAgQABgtRGwJXUABMUVMGUUwABAsPGwFbUwNQVgUAVAFTBQ" >Official MediaWiki Users and Developers Conference Fall 2025 website</a></li>
                                </ul>
                                </p>
                            </td>
                        </tr>

                    </table>
                </td>
            </tr>

            <!-- 1 Column Text + Button : END -->


        </table>
        <!-- Email Body : END -->

        <!-- Email Footer : BEGIN -->
        <table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="max-width: 680px; height:128px; max-height:128px; background-color: #000000;">
            <tr>
                <td style="padding: 0px; font-family: Verdana, Arial, sans-serif; font-size: 72px; line-height: 78px; color: #ffffff;text-align: center; height:78px;">
                    <a href="https://i.wikibase.nl/lists/lt.php?tid=Lk9eAlEAAVIABx9RUlVSHAADBlUbV1YHWkxTAgEDUltSUVoGAVEfCFAEBFMIAVYcUlQBVhsCUFYATF0FAQRMW14HAQJXAlQGVQVTTgMGAgQABgtRGwJXUABMUVMGUUwABAsPGwFbUwNQVgUAVAFTBQ"  target="_blank" style="display: inline-block;">
                        <img title="Visit Wikibase Solutions website" src="cid:9253f2e644c19d1ee55f5d4547a216a1" width="48" height="48" border="0" alt="Wikibase logo Simple" class="center-on-narrow" style="padding:8px;width: 48px; height: 48px">
                    </a>
                    <a title="Visit Wikibase Solutions Facebook" href="https://i.wikibase.nl/lists/lt.php?tid=Lk9dUwdaVwEFBR8KBgMHHAADVlAbVAVQU0xQB1IBUQ1fVg4EBVUfCFAEBFMIAVYcUlQBVhsCUFYATF0FAQRMW14HAQJXAlQGVQVTTgMGAgQABgtRGwJXUABMUVMGUUwABAsPGwFbUwNQVgUAVAFTBQ"  target="_blank" style="display: inline-block;">
                        <img src="cid:c35a1142e692df43e58798c404133983" width="64" height="64" border="0" alt="Facebook social link logo" class="center-on-narrow" style="width: 64px; height: 64px">
                    </a>
                    <a title="Visit Wikibase Solutions Twitter" href="https://i.wikibase.nl/lists/lt.php?tid=Lk8NVVdbAVJUBB9TUQRWHAAGV1IbVF5QB0xWAwlWAABRAApSBlIfCFAEBFMIAVYcUlQBVhsCUFYATF0FAQRMW14HAQJXAlQGVQVTTgMGAgQABgtRGwJXUABMUVMGUUwABAsPGwFbUwNQVgUAVAFTBQ"  target="_blank" style="display: inline-block;">
                        <img src="cid:11211b779f3527e5bfa07a2fd4d3a26e" width="64" height="64" border="0" alt="Twitter social link logo" class="center-on-narrow" style="width: 64px; height: 64px">
                    </a>
                    <a title="Visit Wikibase Solutions LinkedIn" href="https://i.wikibase.nl/lists/lt.php?tid=Lk8IUlNXBQNQBx8GU1YEHABXBlcbVFBTBkxWAwYDUwxTUA8HCwIfCFAEBFMIAVYcUlQBVhsCUFYATF0FAQRMW14HAQJXAlQGVQVTTgMGAgQABgtRGwJXUABMUVMGUUwABAsPGwFbUwNQVgUAVAFTBQ"  target="_blank" style="display: inline-block;">
                        <img src="cid:f27e4acd35c37cb4eb06a3b7ff33c5ad" width="64" height="64" border="0" alt="LinkedIn social link logo" class="center-on-narrow" style="width: 64px; height: 64px;">
                    </a>
                </td>
            </tr>
        </table>
        <!-- Email Footer : END -->

        <!-- Email Footer 2 : BEGIN -->
        <table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="max-width: 680px; background-color: #000000;">
            <tr>
                <td style="padding: 20px; font-family: Verdana, Arial, sans-serif; font-size: 9px; line-height: 12px; text-align: center; color: #888888;">
                    <table width="100%">

                        <tr style="width:100%; font-family: Verdana, Arial, sans-serif; font-size: 9px; line-height: 12px; color: #888888; padding-top: 5px; text-align: left; vertical-align: top;">
                            <td style="padding: 0px; font-family: Verdana, Arial, sans-serif; font-size: 9px; line-height: 12px; color: #555555; text-align: left;">
                                --

    <div class="footer" style="text-align:left; font-size: 75%;">
      <p>This message was sent to lugman@lists.linux.it by info@wikibase.nl.</p>
      <p>To forward this message, please do not use the forward button of your email application, because this message was made specifically for you only. Instead use the <a href="https://i.wikibase.nl/lists/lt.php?tid=Lk9dUFZVBQBVBx8BBgcFHABTAVYbDlVbB0wEAlQEUApQUgsAC1EfCFAEBFMIAVYcUlQBVhsCUFYATF0FAQRMW14HAQJXAlQGVQVTTgMGAgQABgtRGwJXUABMUVMGUUwABAsPGwFbUwNQVgUAVAFTBQ" >forward page</a> in our newsletter system.<br/>
      To change your details and to choose which lists to be subscribed to, visit your personal <a href="https://i.wikibase.nl/lists/lt.php?tid=Lk8PVwpaBwAIAx9UAlVRHABXBFYbDgIAWkxXAwcAVg9XVQhUUVEfCFAEBFMIAVYcUlQBVhsCUFYATF0FAQRMW14HAQJXAlQGVQVTTgMGAgQABgtRGwJXUABMUVMGUUwABAsPGwFbUwNQVgUAVAFTBQ" >preferences page</a>.<br/>
      Or you can <a href="https://i.wikibase.nl/lists/lt.php?tid=Lk8NU1RTAFEIUh9TAAkBHABTUVMbV1JSAExQB1dUUloEVQoDClIfCFAEBFMIAVYcUlQBVhsCUFYATF0FAQRMW14HAQJXAlQGVQVTTgMGAgQABgtRGwJXUABMUVMGUUwABAsPGwFbUwNQVgUAVAFTBQ" >opt-out completely</a> from all future mailings.</p>
    </div>

  
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
        </table>
        <!-- Email Footer 2 : END -->

        <!--[if mso]>
        </td>
        </tr>
        </table>
        <![endif]-->
    </div>



    <!--[if mso | IE]>
    </td>
    </tr>
    </table>
    <![endif]-->
</center>

<div style="clear: both; font-family: arial, verdana, sans-serif; font-size: 8px; font-variant: small-caps; font-weight: normal; padding: 2px; padding-left:10px;padding-top:20px;">powered by <a href="https://i.wikibase.nl/lists/lt.php?tid=Lk9cBAIHWlIEAx8HVAJTHABaAFUbD1FRBkxcA1NRB1gEUgECBgcfCFAEBFMIAVYcUlQBVhsCUFYATF0FAQRMW14HAQJXAlQGVQVTTgMGAgQABgtRGwJXUABMUVMGUUwABAsPGwFbUwNQVgUAVAFTBQ"  target="_blank" title="powered by phpList version 3.6.14, © phpList ltd">phpList</a></div><img src="https://i.wikibase.nl/lists/ut.php?u=c99235ccc102b5cdaa1621ea13c5a755&m=27" width="1" height="1" border="0" alt="" /></body>
</html>