diff --git a/www/de/index.html b/www/de/index.html index fdf7ecf..6237ba8 100644 --- a/www/de/index.html +++ b/www/de/index.html @@ -35,7 +35,7 @@
  • Über
  • Genossenschaften
  • Vorschau
  • -
  • Downloads
  • +
  • Downloads
  • Quellcode
  • @@ -152,6 +152,17 @@

    +
    +
    +

    Winzerkeller Seewinkel

    +
    Winzerkeller Seewinkel
    reg. Gen.m.b.H.
    +
    Zweigstellen:
    +
    Pamhagen
    + +
    +
    diff --git a/www/en/index.html b/www/en/index.html index bf2d752..dfb0db0 100644 --- a/www/en/index.html +++ b/www/en/index.html @@ -35,7 +35,7 @@
  • About
  • Cooperatives
  • Preview
  • -
  • Downloads
  • +
  • Downloads
  • Source Code
  • @@ -152,6 +152,17 @@

    +
    +
    +

    Winzerkeller Seewinkel

    +
    Winzerkeller Seewinkel
    reg. Gen.m.b.H.
    +
    Zweigstellen:
    +
    Pamhagen
    + +
    +
    diff --git a/www/files/index.php b/www/files/index.php index 7b5ee20..6c44987 100644 --- a/www/files/index.php +++ b/www/files/index.php @@ -61,9 +61,11 @@ if (sizeof($info) > 0 && $info[1] === 'stat') { header('Content-Length: 0'); header('Location: /stat'); exit(); -} else if (sizeof($info) > 1 && ($info[1] === 'elwig' || $info[1] === 'winziprint')) { +} else if (sizeof($info) > 1 && ($info[1] === 'elwig' || $info[1] === 'winziprint' || $info[1] === 'pamhagen-sysctrl')) { $getProd = $info[1]; - if (sizeof($info) > 2) $getVers = $info[2]; + if (sizeof($info) > 2 && !empty($info[2])) { + $getVers = $info[2]; + } if (sizeof($info) > 3) { header('Status: 404'); header('Content-Length: 0'); @@ -94,6 +96,9 @@ foreach ($files as $name => [$size, $mtime, $ctime]) { } else { $vers = substr($name, $p1 + 1, $p2 - $p1 - 1); $prod = strtolower(substr($name, 0, $p1)); + if ($prod === 'pamhagensysctrl') { + $prod = 'pamhagen-sysctrl'; + } } $mod = date(DATE_ATOM, $mtime); $cre = date(DATE_ATOM, $ctime); diff --git a/www/res/style.css b/www/res/style.css index d3e2d28..00cfdf2 100644 --- a/www/res/style.css +++ b/www/res/style.css @@ -320,7 +320,7 @@ main .clients .container .edge:nth-last-child(2) {top: 0; right: 0; transform: r main .clients .container .edge:nth-last-child(3) {bottom: 0; right: 0; transform: rotate(180deg);} main .clients .container .edge:nth-last-child(4) {bottom: 0; left: 0; transform: rotate(270deg);} -@media screen and (max-width: 1000px) { +@media screen and (max-width: 1200px) { main .clients .container { flex-direction: column; } @@ -500,7 +500,7 @@ main.preview a:focus { border-radius: 0.5em; } -@media screen and (min-width: 2480px) { +@media screen and (min-width: 3000px) { .window:nth-of-type(1) { font-size: 2rem; } @@ -528,7 +528,7 @@ main.preview a:focus { } } -@media screen and (min-width: 2280px) { +@media screen and (min-width: 2800px) { .window:nth-of-type(2), .window:nth-of-type(3) { font-size: 2rem; }