<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Inkubator</title>
    <link>https://inkubator.koppatz.com/</link>
    <description>Inkubator</description>
    <atom:link href="https://inkubator.koppatz.com/tags/orgy/feed.xml" rel="self" type="application/rss+xml"/>
    
    <item>
      <title>Orgy — Sphinx</title>
      <link>https://inkubator.koppatz.com/ueber/orgy-vs-sphinx/</link>
      <guid>https://inkubator.koppatz.com/ueber/orgy-vs-sphinx/</guid>
      <pubDate>Tue, 26 May 2026 00:00:00 +0000</pubDate>
      <description><![CDATA[&lt;p&gt;Details aus der Migration von Sphinx zu Orgy werden hier beschrieben.&lt;/p&gt;
&lt;p&gt;Oft muß ein HTML-Block als Ersatz für Sphinx-spezifische Plugins verwendet werden. Siehe dazu auch unter dem »Tag«:  &lt;a href=&quot;https://inkubator.koppatz.com/tags/orgy/&quot;&gt;&lt;u&gt;orgy&lt;/u&gt;&lt;/a&gt;.&lt;/p&gt;]]></description>
    </item>
    
    <item>
      <title>Blickfang -- orgy -- Bild&quot;</title>
      <link>https://inkubator.koppatz.com/ueber/orgy--image__eyecatcher/</link>
      <guid>https://inkubator.koppatz.com/ueber/orgy--image__eyecatcher/</guid>
      <pubDate>Mon, 25 May 2026 00:00:00 +0000</pubDate>
      <description><![CDATA[
&lt;figure style=&quot;float:right; width:220px; margin:20px;&quot;&gt;
  &lt;img src=&quot;https://inkubator.koppatz.com/../images/schirmpilz.avif&quot;
       class=&quot;thumbnail&quot;
       onclick=&quot;openOverlay()&quot;&gt;
  &lt;figcaption&gt;Schirmpilz&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;!-- Overlay --&gt;
&lt;div id=&quot;overlay&quot; onclick=&quot;closeOverlay()&quot;&gt;
  &lt;img src=&quot;https://inkubator.koppatz.com/../images/schirmpilz.avif&quot;&gt;
&lt;/div&gt;

&lt;p&gt;Ich platzieren gern ein Bild zu einem Artikel, egal ob es einen Bezug zum Inhalt gibt oder es einfach nur ein Blickfang für ein insteressantes Motiv ist, wie hier die Schirmpilze. Ein Klick auf die Vorschau soll auch noch eine vergrößerte Version präsentieren. Und so funktioniert es:&lt;/p&gt;
&lt;h3&gt;Im Artikel&lt;/h3&gt;
&lt;p&gt;Das Bild platzieren ...&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;
#+begin_export html

&amp;lt;figure style=&amp;quot;float:right; width:220px; margin:20px;&amp;quot;&amp;gt;
  &amp;lt;img src=&amp;quot;../kenya_on_the_globe.png&amp;quot;
       class=&amp;quot;thumbnail&amp;quot;
       onclick=&amp;quot;openOverlay()&amp;quot;&amp;gt;
  &amp;lt;figcaption&amp;gt;Kenia auf der Weltkarte&amp;lt;/figcaption&amp;gt;
&amp;lt;/figure&amp;gt;
&amp;lt;!-- Overlay --&amp;gt;
&amp;lt;div id=&amp;quot;overlay&amp;quot; onclick=&amp;quot;closeOverlay()&amp;quot;&amp;gt;
  &amp;lt;img src=&amp;quot;../kenya_on_the_globe.png&amp;quot;&amp;gt;
&amp;lt;/div&amp;gt;

#+end_export
  &lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;JavaScript einbinden&lt;/h3&gt;
&lt;pre&gt;&lt;code class=&quot;language-javascript&quot;&gt;
function openOverlay() {
    document.getElementById(&amp;quot;overlay&amp;quot;).style.display = &amp;quot;flex&amp;quot;;
}

function closeOverlay() {
    document.getElementById(&amp;quot;overlay&amp;quot;).style.display = &amp;quot;none&amp;quot;;
}

  &lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;CSS zum Bild&lt;/h3&gt;
&lt;pre&gt;&lt;code class=&quot;language-css&quot;&gt;.thumbnail {
    width: 200px;
    cursor: pointer;
}

#overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);

    /* Bild zentrieren */
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

#overlay img {
    max-width: 90%;
    max-height: 90%;
    cursor: pointer;
    box-shadow: 0 0 20px black;
}&lt;/code&gt;&lt;/pre&gt;]]></description>
    </item>
    
    <item>
      <title>Index -- orgy -- zweispaltig&quot;</title>
      <link>https://inkubator.koppatz.com/ueber/orgy--tags__zweispaltig/</link>
      <guid>https://inkubator.koppatz.com/ueber/orgy--tags__zweispaltig/</guid>
      <pubDate>Mon, 25 May 2026 00:00:00 +0000</pubDate>
      <description><![CDATA[
&lt;figure style=&quot;float:right; width:220px; margin:20px;&quot;&gt;
  &lt;img src=&quot;https://inkubator.koppatz.com/../images/schirmpilz.avif&quot;
       class=&quot;thumbnail&quot;
       onclick=&quot;openOverlay()&quot;&gt;
  &lt;figcaption&gt;Schirmpilz&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;!-- Overlay --&gt;
&lt;div id=&quot;overlay&quot; onclick=&quot;closeOverlay()&quot;&gt;
  &lt;img src=&quot;https://inkubator.koppatz.com/../images/schirmpilz.avif&quot;&gt;
&lt;/div&gt;

&lt;p&gt;Im Original sind die Tags (index-Einträge) einspaltig, da ich aber viele Index-Einträge verwende, nutzt die Anordnung in zwei Spalten den Freiraum besser aus. Dazu muß in der CSS-Datei folgendes eingetragen werden:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-css&quot;&gt;
.two-columns {
  column-count: 2;
  column-gap: 40px;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Und im templates/tags-index.html die ID ergänzen:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;
  &amp;lt;section&amp;gt;
  &amp;lt;h1&amp;gt;Tags&amp;lt;/h1&amp;gt;
  &amp;lt;ul class=&amp;quot;two-columns&amp;quot;&amp;gt;
    {% for entry in tags %}
    &amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;{{lang-prefix}}/tags/{{entry.tag}}/&amp;quot;&amp;gt;{{entry.tag}}&amp;lt;/a&amp;gt; ({{entry.count}})&amp;lt;/li&amp;gt;
    {% endfor %}
  &amp;lt;/ul&amp;gt;
&amp;lt;/section&amp;gt;
&lt;/code&gt;&lt;/pre&gt;]]></description>
    </item>
    
  </channel>
</rss>