<?xml version="1.0" encoding="UTF-8"?>
<item xmlns="http://omeka.org/schemas/omeka-xml/v5" itemId="622" public="1" featured="0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://omeka.org/schemas/omeka-xml/v5 http://omeka.org/schemas/omeka-xml/v5/omeka-xml-5-0.xsd" uri="https://archiwum-galeriafoksal.pl/items/show/622?output=omeka-xml" accessDate="2026-06-30T05:41:46+00:00">
  <fileContainer>
    <file fileId="1206" order="1">
      <src>https://archiwum-galeriafoksal.pl/files/original/4047a1d1f32dcd89cdfcecd0ea413fa4.jpeg</src>
      <authentication>62c12b37dc56d13efb3dc8f9017b52ff</authentication>
    </file>
    <file fileId="1010" order="2">
      <src>https://archiwum-galeriafoksal.pl/files/original/5ef5d1d2b4ecaa9730e094b8ceb9affd.pdf</src>
      <authentication>8945e033d32c5289ce6d835f9e114870</authentication>
    </file>
  </fileContainer>
  <collection collectionId="56">
    <elementSetContainer>
      <elementSet elementSetId="1">
        <name>Dublin Core</name>
        <description>The Dublin Core metadata element set is common to all Omeka records, including items, files, and collections. For more information see, http://dublincore.org/documents/dces/.</description>
        <elementContainer>
          <element elementId="50">
            <name>Title</name>
            <description>A name given to the resource</description>
            <elementTextContainer>
              <elementText elementTextId="3406">
                <text>Zygmunt Targowski, Fotografie, 21.12.1971</text>
              </elementText>
            </elementTextContainer>
          </element>
          <element elementId="39">
            <name>Creator</name>
            <description>An entity primarily responsible for making the resource</description>
            <elementTextContainer>
              <elementText elementTextId="3407">
                <text>Zygmunt Targowski</text>
              </elementText>
            </elementTextContainer>
          </element>
          <element elementId="40">
            <name>Date</name>
            <description>A point or period of time associated with an event in the lifecycle of the resource</description>
            <elementTextContainer>
              <elementText elementTextId="3408">
                <text>21.12.1971</text>
              </elementText>
            </elementTextContainer>
          </element>
          <element elementId="51">
            <name>Type</name>
            <description>The nature or genre of the resource</description>
            <elementTextContainer>
              <elementText elementTextId="3409">
                <text>wystawa</text>
              </elementText>
            </elementTextContainer>
          </element>
        </elementContainer>
      </elementSet>
    </elementSetContainer>
  </collection>
  <itemType itemTypeId="18">
    <name>Katalog</name>
    <description>Katalog wystawy</description>
  </itemType>
  <elementSetContainer>
    <elementSet elementSetId="1">
      <name>Dublin Core</name>
      <description>The Dublin Core metadata element set is common to all Omeka records, including items, files, and collections. For more information see, http://dublincore.org/documents/dces/.</description>
      <elementContainer>
        <element elementId="50">
          <name>Title</name>
          <description>A name given to the resource</description>
          <elementTextContainer>
            <elementText elementTextId="3491">
              <text>Katalog wystawy: Zygmunt Targowski, Fotografie, 21.12.1971</text>
            </elementText>
          </elementTextContainer>
        </element>
        <element elementId="39">
          <name>Creator</name>
          <description>An entity primarily responsible for making the resource</description>
          <elementTextContainer>
            <elementText elementTextId="3492">
              <text>Zygmunt Targowski</text>
            </elementText>
          </elementTextContainer>
        </element>
        <element elementId="40">
          <name>Date</name>
          <description>A point or period of time associated with an event in the lifecycle of the resource</description>
          <elementTextContainer>
            <elementText elementTextId="3493">
              <text>21.12.1971</text>
            </elementText>
          </elementTextContainer>
        </element>
        <element elementId="43">
          <name>Identifier</name>
          <description>An unambiguous reference to the resource within a given context</description>
          <elementTextContainer>
            <elementText elementTextId="3494">
              <text>1971_16_k</text>
            </elementText>
          </elementTextContainer>
        </element>
        <element elementId="41">
          <name>Description</name>
          <description>An account of the resource</description>
          <elementTextContainer>
            <elementText elementTextId="3495">
              <text>Tekst - Wiesław Borowski; Druk - DOG PSP U-68</text>
            </elementText>
          </elementTextContainer>
        </element>
        <element elementId="44">
          <name>Language</name>
          <description>A language of the resource</description>
          <elementTextContainer>
            <elementText elementTextId="3496">
              <text>polski, angielski</text>
            </elementText>
          </elementTextContainer>
        </element>
      </elementContainer>
    </elementSet>
  </elementSetContainer>
  <tagContainer>
    <tag tagId="14">
      <name>1971</name>
    </tag>
  </tagContainer>
</item>
<script>
jQuery(document).ready(function($) {
    // Sprawdzamy ścieżkę URL (np. /items/browse czy /kontakt)
    var currentPath = window.location.pathname;

    // WARUNEK: Jeśli ścieżka to "/" lub pusta, tylko wtedy odpalamy menu
    if (currentPath === "/" || currentPath === "" || currentPath.indexOf("index.php") !== -1) {
        
        // 1. Dynamicznie wstrzykujemy style blokujące krzyżyk i otwierające menu
        $("<style id='foksal-menu-styles'>")
            .prop("type", "text/css")
            .html("#nav-modal { display: block !important; opacity: 1 !important; visibility: visible !important; } #nav-modal .close-button, #nav-toggle.active { display: none !important; }")
            .appendTo("head");

        // 2. Dodajemy klasę open do struktury
        $("#nav-modal").addClass("open");

        // 3. Obsługa bezpiecznego zamykania przy kliknięciu
        $("#nav-modal .navigation a").on("click", function(e) {
            var url = $(this).attr("href");
            
            if (url && url !== "#" && !url.startsWith("#")) {
                e.preventDefault();

                // Natychmiast usuwamy style i ukrywamy menu przed przejściem dalej
                $("#foksal-menu-styles").remove();
                $("#nav-modal").css({
                    "display": "none",
                    "opacity": "0",
                    "visibility": "hidden"
                }).removeClass("open");
                
                $("#nav-toggle").removeClass("active").attr("aria-expanded", "false");

                setTimeout(function() {
                    window.location.href = url;
                }, 10);
            }
        });
    }
});
</script>