Widget:WORKING

From ECHSA Congenital Database
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>