Widget:WORKING

From ECHSA Congenital Database
Revision as of 19:17, 8 December 2025 by MaciejBlizinski (talk | contribs) (Created page with "<div class="demo-widget-container"> <p>Witaj w przykładowym widgecie MediaWiki!</p> <p>Aktualny czas serwera to: <span id="widget-czas"></span></p> <!-- To...")
(diff) ←Older revision | view current revision (diff) | Newer revision→ (diff)
Jump to navigationJump to search

Witaj w przykładowym widgecie MediaWiki!

Aktualny czas serwera to:

   {if $komunikat}
           Treść komunikatu: {$komunikat}
   {/if}

<style> /* Styl CSS dla widgetu */ .demo-widget-container {

   padding: 15px;
   border: 1px solid #ddd;
   background-color: #f9f9f9;
   border-radius: 5px;
   margin-bottom: 1em;

} .komunikat-specjalny {

   margin-top: 10px;
   padding: 10px;
   background-color: #e7f4ff;
   border: 1px solid #007bff;
   border-radius: 4px;

} </style>

<script> // JavaScript dla widgetu - dynamiczne wyświetlanie czasu (function() {

   var czasElement = document.getElementById('widget-czas');
   if (czasElement) {
       var now = new Date();
       czasElement.textContent = now.toLocaleTimeString();
   }

})(); </script>