WIP: index loads on heliohost

This commit is contained in:
marko
2024-11-30 20:09:47 +01:00
parent 9fe734ed2a
commit 1e8f4e7300
27 changed files with 285 additions and 66 deletions

View File

@@ -1,5 +1,8 @@
build/*
temp/*
scripts/
!scripts/*.template
# don't commit any secrets
Makefile.local

View File

@@ -27,6 +27,7 @@ build/materialize/%.php: src/md/%.md build/yaml/%.yaml pandocTemplate/materializ
--css="ressourcen/css/cwsvJudo.css" \
--template=pandocTemplate/materialize.pandocTemplate \
--to=html \
--wrap=preserve \
--output=$@ \
$< $(word 2,$^)

View File

@@ -57,7 +57,7 @@ $someOptions['dbCharset'] = firstNonEmptyOf([$someOptions['dbCharset'], "ISO-885
return;
}
$defaultPromoImg['src'] = "http://cwsvjudo.bplaced.net/ressourcen/graphiken/logos/cwsvJudoLogoWappen.x256.png";
$defaultPromoImg['src'] = "/ressourcen/graphiken/logos/cwsvJudoLogoWappen.256w.png";
$defaultPromoImg['width'] = "207";
$defaultPromoImg['height'] = "256";
$defaultPromoImg['alt'] = "cwsvJudo";

View File

@@ -138,7 +138,7 @@ $endfor$
title="Judo im Chemnitzer WSV"
alt="Judo im Chemnitzer WSV - Logo"
src="<?php echo($$canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvJudoLogoWappen.128w.png"
srcset="<?php echo($$canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvJudoLogoWappen.x256.png 2x"
srcset="<?php echo($$canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvJudoLogoWappen.256w.png 2x"
>
</header>

View File

@@ -19,9 +19,9 @@
galleryRedirector();
$if(phpTitleString)$
// PHPCount::AddHit($phpTitleString$);
// PHPCount::AddHit($phpTitleString$);
$else$
// PHPCount::AddHit("$title$");
// PHPCount::AddHit("$title$");
$endif$
?>
@@ -146,7 +146,7 @@ $endif$
</span>
<img width="128" height="104" title="Judo im Chemnitzer WSV" alt="Judo im Chemnitzer WSV - Logo"
src="<?php echo($$canonicalBaseUrl);?>/ressourcen/graphiken/logos/cwsvJudoLogoWappen.128w.png"
srcset="<?php echo($$canonicalBaseUrl);?>/ressourcen/graphiken/logos/cwsvJudoLogoWappen.x256.png 2x">
srcset="<?php echo($$canonicalBaseUrl);?>/ressourcen/graphiken/logos/cwsvJudoLogoWappen.256w.png 2x">
</header>
$if(mainNav)$

View File

@@ -10,6 +10,11 @@ function get_inner_html( $node ) {
return $innerHTML;
}
/** checks if the page is a amp page by checking the reqested url for our amp source */
function check_for_amp_site(){
return (strpos( $_SERVER['REQUEST_URI'], "pages/amp" ) !== false );
}
/// Eine Liste mit News abfragen
///
/// Der Rückgabewert sollte vor Verwendung (und zur Fehlerbeheandlung)
@@ -27,7 +32,7 @@ if( !is_positive_integer($optionsArray['limit']) ) $optionsArray['limit'] = "1";
$ret = array();
// Falls eine konkrete newsId angegeben wurde, wollen wir ab dieser News haben
if( is_positive_integer($optionsArray['newsId']) ){
if( is_positive_integer($optionsArray['newsId']??null) ){
$pdoStatementForQuerryingNews = $aMysqlConn->prepare(
"SELECT * FROM cwsvjudo.nachrichten WHERE nachrichten.datum <= (SELECT nachrichten.datum FROM nachrichten WHERE nachrichten.nr = :newsId ) ORDER BY nachrichten.datum DESC LIMIT :limit OFFSET 0;"
);
@@ -37,7 +42,7 @@ $ret = array();
else{
$query = "SELECT * FROM nachrichten";
if( is_positive_integer($optionsArray['jahr']) )
if( is_positive_integer($optionsArray['jahr']??null) )
$query .= " WHERE DATE_FORMAT( datum, '%Y') = :jahr";
$query .= " ORDER BY datum DESC, nr DESC LIMIT :limit;";
@@ -107,7 +112,8 @@ $options = getKeyValueArray($someOptions);
}
if( !filter_var($aNews['promoImg'], FILTER_VALIDATE_URL) && !filter_var($aNews['promoImg']['src'], FILTER_VALIDATE_URL) ){
$domDoc = new DOMDocument();
$domDoc->loadHTML( mb_convert_encoding($aNews['nachricht'], 'HTML-ENTITIES', "UTF-8") );
// @todo With php8.4 use Dom\HTMLDocument::createFromString() and don't ignore the warnings.
@$domDoc->loadHTML( mb_convert_encoding($aNews['nachricht'], 'HTML-ENTITIES', "UTF-8") );
foreach($domDoc->getElementsByTagName('a') as $anchor){
$anchorDad = $anchor->parentNode;
foreach($anchor->getElementsByTagName('img') as $img){
@@ -141,7 +147,7 @@ $options = getKeyValueArray($someOptions);
}
// Für den Fall einer ampSeite müssen die imgTags angepasst werden
if( strpos( $_SERVER['ORIG_PATH_TRANSLATED'], "pages/amp" ) !== false ){
if( check_for_amp_site() ){
$retHtml = str_replace("<img", "<amp-img layout=\"responsive\" width=\"".($aNews['promoImg']['width']?$aNews['promoImg']['width']:"200")."\" height=\"".($aNews['promoImg']['height']?$aNews['promoImg']['height']:"133")."\"", $retHtml);
$retHtml = str_replace("/>", "></amp-img>", $retHtml);
}
@@ -204,7 +210,7 @@ function getHtmlNewsTitle(){
function img2ampimg($inText){
$outText = $inText;
// Zuweilen sind im Nachtrichtentext selbst auch schon Bilder, auch diese müssen bei ampSeiten angepasst werden
if( strpos( $_SERVER['ORIG_PATH_TRANSLATED'], "pages/amp" ) !== false ){
if( check_for_amp_site() ){
// bei bereits im Newstext vorhandenen Bildern, gehen wir davon aus, dass widt+heigth bereits gesetzt sind
$outText = str_replace("<img ", "<amp-img layout=\"responsive\" ", $outText);
$outText = str_replace("/>", "></amp-img>", $outText);
@@ -216,7 +222,7 @@ function img2ampimg($inText){
function video2ampvideo($inText){
$outText = $inText;
// Zuweilen sind im Nachtrichtentext selbst auch schon Bilder, auch diese müssen bei ampSeiten angepasst werden
if( strpos( $_SERVER['ORIG_PATH_TRANSLATED'], "pages/amp" ) !== false ){
if( check_for_amp_site() ){
// bei bereits im Newstext vorhandenen Bildern, gehen wir davon aus, dass widt+heigth bereits gesetzt sind
$outText = str_replace("<video ", "<amp-video ", $outText);
$outText = str_replace("<source ", "<source type=\"video/webm\" ", $outText);

View File

@@ -10,7 +10,7 @@ $message = array();
$limit = is_positive_integer($someOptions['limit'])?$someOptions['limit']:1;
$headerRootLevel = is_positive_integer($someOptions['$headerRootLevel'])?$someOptions['$headerRootLevel']:1;
$headerRootLevel = is_positive_integer($someOptions['headerRootLevel'])?$someOptions['headerRootLevel']:1;
/// Eine Datenbankverbindung (über pdo) erstellen
try{
@@ -31,9 +31,9 @@ $headerRootLevel = is_positive_integer($someOptions['$headerRootLevel'])?$someOp
$newsList = getNews($db_connection, $someOptions);
$newsHeading = "Aktuelle Meldungen";
//var_dump($options);
if($someOptions['newsId']) $newsHeading=$newsList[0]['betreff'];
if($someOptions['jahr']) $newsHeading="Nachrichten des Jahres ".$someOptions['jahr'];
if($someOptions['newsId']??false) $newsHeading=$newsList[0]['betreff'];
if($someOptions['jahr']??false) $newsHeading="Nachrichten des Jahres ".$someOptions['jahr'];
echo("<h".strval($headerRootLevel).">".$newsHeading."</h".$headerRootLevel.">");
if( is_array( $newsList ) || is_object( $newsList ) )

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -8,11 +8,13 @@ set ftp:ssl-allow off
# upload:
# - page data
mirror --verbose --continue --parallel=8 --reverse ./build/materialize /httpdocs/pages/responsive
mirror --verbose --continue --parallel=8 --reverse ./src/shared/ /httpdocs/pages/shared
# - php lib
mirror --verbose --continue --parallel=8 --reverse ./phpLib/cwsvJudo /httpdocs/ressourcen/phpLib/cwsvJudo
# - graphics
mirror --verbose --continue --parallel=8 --reverse ./build/graphiken /httpdocs/ressourcen/graphiken
mirror --verbose --continue --parallel=8 --reverse ./build/graphiken/cwsvJudoLogoWappen /httpdocs/ressourcen/graphiken/logos
mirror --verbose --continue --parallel=8 --reverse ./graphiken/banner /httpdocs/ressourcen/graphiken/banner
mirror --verbose --continue --parallel=8 --reverse ./res/videos.d /httpdocs/videos.d
put build/graphiken/favIcons/favicon.ico -o /httpdocs/favicon.ico
# - css
mkdir -pf /httpdocs/ressourcen/css

View File

@@ -0,0 +1,23 @@
# Your Favicon Package
This package was generated with [RealFaviconGenerator](https://realfavicongenerator.net/) [v0.16](https://realfavicongenerator.net/change_log#v0.16)
## Install instructions
To install this package:
Extract this package in <code>&lt;web site&gt;/ressourcen/graphiken/favIcons/</code>. If your site is <code>http://www.example.com</code>, you should be able to access a file named <code>http://www.example.com/ressourcen/graphiken/favIcons/favicon.ico</code>.
Insert the following code in the `head` section of your pages:
<link rel="apple-touch-icon" sizes="180x180" href="/ressourcen/graphiken/favIcons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/ressourcen/graphiken/favIcons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/ressourcen/graphiken/favIcons/favicon-16x16.png">
<link rel="manifest" href="/ressourcen/graphiken/favIcons/site.webmanifest">
<link rel="mask-icon" href="/ressourcen/graphiken/favIcons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/ressourcen/graphiken/favIcons/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/ressourcen/graphiken/favIcons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
*Optional* - Check your favicon with the [favicon checker](https://realfavicongenerator.net/favicon_checker)

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/ressourcen/graphiken/favIcons/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -0,0 +1,9 @@
<link rel="apple-touch-icon" sizes="180x180" href="/ressourcen/graphiken/favIcons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/ressourcen/graphiken/favIcons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/ressourcen/graphiken/favIcons/favicon-16x16.png">
<link rel="manifest" href="/ressourcen/graphiken/favIcons/site.webmanifest">
<link rel="mask-icon" href="/ressourcen/graphiken/favIcons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/ressourcen/graphiken/favIcons/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/ressourcen/graphiken/favIcons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@@ -0,0 +1,120 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="256.000000pt" height="256.000000pt" viewBox="0 0 256.000000 256.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.14, written by Peter Selinger 2001-2017
</metadata>
<g transform="translate(0.000000,256.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M353 2302 c-52 -4 -54 -8 -125 -187 -65 -164 -97 -262 -137 -423 -28
-112 -37 -157 -66 -337 -7 -45 -13 -102 -19 -185 l-6 -75 50 -65 c52 -67 126
-152 193 -222 20 -22 34 -45 31 -50 -4 -7 -2 -8 4 -4 6 4 28 -10 50 -31 21
-21 57 -55 80 -76 24 -21 40 -42 37 -47 -3 -5 0 -8 7 -5 7 3 24 -5 38 -18 32
-29 231 -178 247 -184 7 -3 10 -10 6 -16 -3 -6 -1 -7 5 -3 14 8 55 -18 45 -28
-4 -4 0 -4 9 -1 9 4 19 2 23 -4 3 -6 11 -11 18 -11 6 0 3 6 -8 13 -16 13 -13
17 41 47 32 18 67 40 77 48 9 8 17 11 17 6 0 -5 4 -4 8 1 11 16 56 51 49 39
-3 -6 0 -11 7 -11 9 0 12 7 8 15 -4 11 -1 14 12 9 9 -4 15 -3 12 2 -5 7 8 20
57 60 15 12 19 12 30 -3 12 -16 13 -16 13 3 0 11 -4 17 -8 15 -4 -3 -8 0 -8 5
0 10 14 15 33 12 5 -1 6 3 2 9 -3 5 8 18 24 28 17 10 28 22 24 25 -3 4 -2 7 4
7 5 0 39 29 75 65 36 36 63 65 61 65 -3 0 9 14 27 31 17 17 42 46 56 64 25 33
37 37 64 20 13 -8 13 -7 1 8 -7 9 -17 14 -22 11 -13 -8 -11 5 4 21 19 22 31
38 51 69 14 23 20 26 28 15 7 -11 8 -9 6 7 -2 11 3 28 9 36 7 8 13 26 13 39 0
69 -3 99 -9 99 -3 0 -7 15 -7 33 -3 67 -11 137 -17 144 -4 3 -7 22 -7 40 0 19
-5 43 -10 53 -6 10 -11 41 -13 68 -1 28 -5 48 -9 45 -13 -7 -9 12 5 26 10 10
9 12 -2 9 -7 -2 -15 4 -17 12 -2 8 -8 35 -14 59 -8 33 -8 47 2 60 12 14 11 15
-4 2 -16 -12 -18 -11 -18 8 0 30 -1 35 -9 46 -4 6 -13 30 -20 55 -13 45 -19
61 -40 114 -7 16 -9 31 -7 34 3 3 -1 17 -8 31 -8 14 -20 42 -26 61 -15 44 -23
63 -49 122 -12 26 -21 52 -21 58 0 5 -21 10 -47 10 -441 4 -877 4 -910 2z"/>
<path d="M2228 2305 c-2 -2 -43 -6 -93 -9 -49 -3 -99 -8 -110 -10 -11 -2 -42
-7 -70 -11 -27 -5 -53 -9 -57 -11 -5 -1 -12 -2 -18 -3 -18 -2 -11 -37 13 -59
22 -20 75 -47 89 -44 9 2 58 -69 58 -84 0 -7 -58 -31 -130 -55 -71 -23 -130
-46 -130 -51 0 -16 77 -58 102 -56 15 1 25 5 23 8 -2 3 10 11 26 17 26 10 30
10 25 -3 -3 -9 -6 -19 -6 -23 0 -4 -23 -34 -51 -66 -68 -80 -73 -92 -49 -98
12 -3 17 -1 14 5 -3 5 2 8 13 6 10 -1 32 10 48 26 17 15 43 34 58 40 16 7 27
15 26 17 -2 2 5 15 14 29 19 30 28 98 14 103 -6 2 -3 6 6 10 21 8 35 -21 31
-62 -1 -14 -2 -34 -3 -44 -1 -10 -9 -21 -19 -25 -11 -4 -17 -17 -17 -37 0 -24
-4 -30 -22 -30 -31 0 -39 -13 -17 -29 17 -13 17 -15 2 -21 -9 -4 -22 -8 -30
-9 -7 -1 -33 -8 -58 -15 -25 -7 -52 -14 -60 -16 -54 -11 -147 -38 -154 -46
-13 -12 21 -47 69 -69 40 -19 40 -19 57 1 10 12 24 19 33 15 9 -3 15 0 15 9 0
14 14 19 47 18 7 -1 11 3 8 7 -5 8 36 23 43 16 1 -2 -37 -40 -85 -84 -48 -44
-106 -96 -128 -117 l-40 -37 33 6 c25 4 31 3 26 -7 -4 -6 2 -4 13 6 11 9 25
17 31 17 7 0 12 3 12 8 0 4 9 13 21 20 12 8 18 9 15 3 -4 -7 -1 -8 8 -5 9 3
14 9 12 13 -2 3 2 12 10 19 8 7 14 10 14 7 0 -3 11 5 23 19 13 14 27 23 30 19
4 -3 7 -1 7 6 0 7 6 18 13 24 7 7 24 22 38 35 l25 22 -1 -87 c-3 -123 0 -115
-40 -109 -19 3 -35 3 -35 0 0 -3 11 -25 25 -49 42 -71 81 -86 93 -35 8 33 14
66 15 78 0 6 5 12 10 12 5 0 6 7 3 16 -3 9 -3 21 1 27 3 6 7 35 9 66 1 31 3
58 3 60 2 10 42 -35 81 -94 55 -80 100 -103 213 -109 74 -4 72 10 -8 54 -145
81 -205 120 -247 160 -46 45 -61 79 -35 81 49 5 229 -1 239 -8 7 -4 20 -8 28
-10 8 -1 16 -6 18 -11 1 -5 15 -7 31 -4 25 3 28 7 25 35 -5 41 -19 53 -76 71
-46 14 -83 14 -212 2 -73 -7 -97 4 -73 32 6 8 12 19 13 26 8 53 28 99 45 103
10 3 17 9 14 13 -3 4 2 11 11 14 10 4 13 2 8 -7 -5 -9 -4 -9 6 0 7 6 19 9 28
6 9 -4 13 -2 9 4 -6 10 34 26 68 28 6 0 16 4 23 8 6 5 17 5 22 2 22 -14 8 43
-16 66 -23 22 -34 24 -114 24 -80 0 -125 11 -92 22 7 3 19 11 27 20 8 8 19 12
24 8 5 -3 13 0 17 6 5 8 3 9 -7 4 -10 -5 -11 -5 -4 3 18 19 107 64 100 50 -3
-7 -1 -6 7 3 7 9 23 19 36 23 19 6 20 10 11 29 -10 18 -31 37 -41 38 -2 0 -20
4 -40 8 -20 5 -38 7 -40 6z m-28 -59 c0 -13 -88 -96 -100 -96 -8 0 -27 11 -43
24 -23 20 -25 25 -11 30 9 3 20 4 25 0 5 -3 9 0 9 5 0 6 5 11 11 11 5 0 7 -5
3 -11 -3 -6 5 -3 19 6 15 9 31 14 37 10 5 -3 10 -1 10 5 0 6 4 9 9 5 5 -3 12
-1 16 5 6 10 15 14 15 6z m4 -242 c-16 -13 -34 -23 -41 -24 -21 0 -24 18 -6
36 11 10 18 13 21 5 2 -7 9 -6 19 4 8 8 19 12 25 9 6 -4 -2 -16 -18 -30z"/>
<path d="M1450 2281 c-24 -7 -71 -71 -52 -71 5 0 13 11 16 24 7 28 51 47 83
35 19 -7 21 -11 10 -38 -11 -29 -27 -33 -27 -6 0 8 -4 16 -9 19 -11 7 -2 -34
10 -50 5 -6 5 -15 1 -19 -4 -5 -2 -5 5 -1 6 3 17 23 24 43 10 30 13 33 21 19
12 -22 1 -69 -14 -60 -7 4 -8 3 -4 -4 13 -22 -40 -35 -76 -18 -26 12 -22 24 7
21 14 -2 23 1 20 5 -3 5 -12 7 -20 4 -9 -4 -13 1 -12 15 1 22 12 28 20 11 3
-6 4 -5 3 2 -5 23 -31 14 -34 -11 -3 -19 -6 -21 -13 -10 -7 11 -9 11 -9 -3 0
-28 50 -60 85 -54 54 11 78 58 54 109 -9 20 -52 51 -62 46 -1 -1 -13 -4 -27
-8z"/>
<path d="M2196 1252 c-8 -15 -17 -44 -21 -64 -16 -86 -53 -113 -206 -152 -52
-13 -95 -29 -100 -38 -11 -20 32 -68 57 -64 11 2 22 -2 26 -8 5 -7 8 -4 8 7 0
10 5 15 10 12 6 -3 10 -1 10 5 0 6 5 8 10 5 6 -3 10 -1 10 4 0 6 7 11 15 11
12 0 14 -7 11 -27 -2 -16 -5 -40 -5 -55 -1 -21 -7 -29 -28 -34 -31 -8 -45 -23
-35 -39 4 -5 7 -73 7 -151 0 -101 4 -145 13 -157 13 -15 57 -18 79 -4 6 4 13
1 16 -5 3 -10 7 -10 20 1 14 11 17 11 17 0 0 -9 3 -10 8 -4 13 19 54 11 62
-10 10 -26 30 -42 53 -42 18 0 20 5 19 52 -1 16 4 36 11 44 7 9 8 12 1 8 -13
-7 -13 100 -1 121 5 7 3 12 -4 12 -8 0 -8 4 -2 13 6 6 9 31 8 55 -2 26 2 42 9
42 6 0 5 4 -3 9 -8 5 -9 11 -3 15 15 9 5 76 -14 97 -23 26 -84 25 -137 -2 -40
-20 -41 -21 -24 -2 9 11 17 32 17 46 0 15 5 27 11 27 5 0 7 5 4 10 -3 6 -1 11
4 11 36 4 52 7 59 9 4 1 27 1 52 0 126 -6 121 -6 127 18 11 44 -36 69 -124 67
-50 -1 -52 0 -37 16 9 10 22 15 30 12 9 -3 14 0 12 8 -2 8 4 13 14 13 10 -1
14 4 11 12 -3 8 2 17 11 20 9 3 13 10 10 15 -3 5 -1 9 5 9 22 0 -12 49 -44 65
-43 20 -42 20 -59 -13z m-50 -404 c-4 7 -1 12 9 12 8 0 19 -8 22 -17 5 -13 8
-200 4 -259 -1 -11 -73 -29 -101 -25 -8 1 -21 10 -27 18 -16 21 2 45 31 42 12
-1 29 1 39 5 9 3 24 8 32 11 11 3 12 10 6 27 -9 24 -38 28 -88 13 -20 -6 -23
-4 -23 18 0 30 17 45 61 54 40 7 51 20 38 45 -9 17 -12 17 -46 3 -45 -19 -63
-13 -61 19 1 13 6 22 10 20 4 -3 8 -1 8 5 0 14 62 19 79 6 11 -7 13 -7 7 3z"/>
<path d="M1957 1233 c-15 -4 -13 -12 20 -71 20 -37 38 -69 39 -71 7 -8 54 -9
48 0 -3 5 3 9 13 10 10 0 13 3 6 5 -7 3 -10 11 -7 18 13 33 -79 118 -119 109z"/>
<path d="M1714 1135 c-9 -23 4 -62 27 -84 20 -19 73 -36 64 -20 -3 4 0 9 6 11
17 6 0 54 -28 83 -29 28 -61 33 -69 10z"/>
<path d="M1555 999 c-3 -4 2 -6 10 -5 21 3 28 13 10 13 -9 0 -18 -4 -20 -8z"/>
<path d="M1531 967 c2 -1 13 -9 24 -17 19 -14 19 -14 6 3 -7 9 -18 17 -24 17
-6 0 -8 -1 -6 -3z"/>
<path d="M1456 861 c-3 -5 2 -15 12 -22 15 -12 16 -12 5 2 -7 9 -10 19 -6 22
3 4 4 7 0 7 -3 0 -8 -4 -11 -9z"/>
<path d="M1439 838 c-4 -12 -5 -57 0 -53 6 6 10 55 4 55 -1 0 -3 -1 -4 -2z"/>
<path d="M1670 799 c7 -13 18 -27 23 -31 10 -6 12 -82 2 -97 -2 -5 11 -41 31
-81 19 -40 33 -75 31 -77 -3 -2 -32 -5 -66 -7 -34 -2 -65 -6 -67 -9 -3 -3 8
-19 25 -36 30 -30 50 -36 116 -32 100 5 114 3 161 -24 178 -103 298 -150 327
-127 7 5 22 8 34 7 13 -1 19 3 16 8 -4 6 0 8 9 4 9 -3 20 -1 26 5 6 6 19 11
29 12 10 1 38 8 63 15 45 13 68 19 83 20 5 1 5 5 2 11 -3 6 -41 10 -83 10
-125 0 -281 28 -372 67 -8 3 -21 7 -28 9 -26 5 -167 65 -182 77 -8 7 -32 32
-52 55 -27 33 -35 50 -32 70 3 15 9 29 13 32 4 3 8 23 9 45 3 57 -22 86 -82
92 l-48 6 12 -24z"/>
<path d="M1373 753 c0 -9 4 -10 14 -2 7 6 13 12 13 14 0 1 -6 2 -13 2 -8 0
-14 -6 -14 -14z"/>
<path d="M1330 730 c-8 -5 -12 -12 -9 -15 4 -3 12 1 19 10 14 17 11 19 -10 5z"/>
<path d="M1293 688 c-15 -20 -25 -38 -20 -38 3 0 12 11 21 25 17 26 16 35 -1
13z"/>
<path d="M1233 595 c0 -8 4 -12 9 -9 5 3 6 10 3 15 -9 13 -12 11 -12 -6z"/>
<path d="M1131 524 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M1113 495 c0 -8 4 -12 9 -9 5 3 6 10 3 15 -9 13 -12 11 -12 -6z"/>
<path d="M1070 459 c0 -5 5 -7 10 -4 6 3 10 8 10 11 0 2 -4 4 -10 4 -5 0 -10
-5 -10 -11z"/>
<path d="M1011 451 c-8 -5 -9 -11 -3 -15 5 -3 12 1 16 9 6 17 6 18 -13 6z"/>
<path d="M955 421 c-3 -5 -2 -12 3 -15 5 -3 9 1 9 9 0 17 -3 19 -12 6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/ressourcen/graphiken/favIcons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/ressourcen/graphiken/favIcons/android-chrome-256x256.png",
"sizes": "256x256",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

View File

@@ -1,19 +1,23 @@
<aside class="sponsorList">
<ul>
<li>
Der CWSV ist anerkannter St&uuml;tzpunktverein des Bbundesprogrammes &bdquo;Integration durch Sport&rdquo;
<div style="max-heigth=10em;" >
<a
href="http://www.integration-durch-sport.de"
title="Integration durch Sport">
<img
src="http://cwsvjudo.bplaced.net/ressourcen/graphiken/logos/IntegrationDurchSport2018.250x.png"
title="Integration durch Sport - Anerkannter St&uuml;tzpunktverein"
alt="Integration durch Sport - Anerkannter St&uuml;tzpunktverein"
width="250" height="416" hspace="25"
/>
</a>
</div>
</li>
</ul>
<ul>
<li>
Der CWSV ist anerkannter St&uuml;tzpunktverein des Bbundesprogrammes
&bdquo;Integration durch Sport&rdquo;
<div style="max-heigth=10em;">
<a
href="http://www.integration-durch-sport.de"
title="Integration durch Sport"
>
<img
src="/ressourcen/graphiken/logos/IntegrationDurchSport2018.250x.png"
title="Integration durch Sport - Anerkannter St&uuml;tzpunktverein"
alt="Integration durch Sport - Anerkannter St&uuml;tzpunktverein"
width="250"
height="416"
hspace="25"
/>
</a>
</div>
</li>
</ul>
</aside>

View File

@@ -1,10 +1,35 @@
<?php if( !isset($baseUrl) ) $baseUrl = "http://cwsvjudo.bplaced.net";?>
<link rel="apple-touch-icon" sizes="180x180" href="<?php echo($baseUrl);?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="<?php echo($baseUrl);?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="<?php echo($baseUrl);?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/favicon-16x16.png">
<link rel="manifest" href="<?php echo( strpos( $_SERVER['ORIG_PATH_TRANSLATED'], "pages/amp" ) ? "" : $baseUrl );?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/manifest.json">
<link rel="mask-icon" href="<?php echo($baseUrl);?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/safari-pinned-tab.svg" color="#ff8100">
<link rel="shortcut icon" href="<?php echo($baseUrl);?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/favicon.ico">
<meta name="msapplication-config" content="<?php echo($baseUrl);?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/browserconfig.xml">
<meta name="theme-color" content="#ff8100">
<link
rel="apple-touch-icon"
sizes="180x180"
href="/ressourcen/graphiken/logos/favicon/realfavicongenerator/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/ressourcen/graphiken/logos/favicon/realfavicongenerator/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/ressourcen/graphiken/logos/favicon/realfavicongenerator/favicon-16x16.png"
/>
<link
rel="manifest"
href="/ressourcen/graphiken/logos/favicon/realfavicongenerator/manifest.json"
/>
<link
rel="mask-icon"
href="/ressourcen/graphiken/logos/favicon/realfavicongenerator/safari-pinned-tab.svg"
color="#ff8100"
/>
<link
rel="shortcut icon"
href="/ressourcen/graphiken/logos/favicon/realfavicongenerator/favicon.ico"
/>
<meta
name="msapplication-config"
content="/ressourcen/graphiken/logos/favicon/realfavicongenerator/browserconfig.xml"
/>
<meta name="theme-color" content="#ff8100" />

View File

@@ -1,9 +1,11 @@
<?php if( !isset($baseUrl) ) $baseUrl = "http://cwsvjudo.bplaced.net";?>
<link rel="apple-touch-icon" sizes="180x180" href="<?php echo($baseUrl);?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="<?php echo($baseUrl);?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="<?php echo($baseUrl);?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/favicon-16x16.png">
<link rel="mask-icon" href="<?php echo($baseUrl);?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/safari-pinned-tab.svg" color="#ff8100">
<link rel="shortcut icon" href="<?php echo($baseUrl);?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/favicon.ico">
<meta name="msapplication-config" content="<?php echo($baseUrl);?>/ressourcen/graphiken/logos/favicon/realfavicongenerator/browserconfig.xml">
<meta name="theme-color" content="#ff8100">
<link rel="apple-touch-icon" sizes="180x180"
href="/ressourcen/graphiken/logos/favicon/realfavicongenerator/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32"
href="/ressourcen/graphiken/logos/favicon/realfavicongenerator/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16"
href="/ressourcen/graphiken/logos/favicon/realfavicongenerator/favicon-16x16.png">
<link rel="mask-icon" href="/ressourcen/graphiken/logos/favicon/realfavicongenerator/safari-pinned-tab.svg"
color="#ff8100">
<link rel="shortcut icon" href="/ressourcen/graphiken/logos/favicon/realfavicongenerator/favicon.ico">
<meta name="msapplication-config" content="/ressourcen/graphiken/logos/favicon/realfavicongenerator/browserconfig.xml">
<meta name="theme-color" content="#ff8100">

View File

@@ -3,7 +3,7 @@ Die Judoka des CWSV bedanken sich bei ihren Förderern:
<li>Der CWSV e.V. ist Werbebotschafter der Aktion &bdquo;So geht sächsisch&ldquo;
<a href="https://www.so-geht-saechsisch.de" title="So geht s&auml;chsisch">
<amp-img layout="responsive" style="width:100%;"
src="http://cwsvjudo.bplaced.net/ressourcen/graphiken/banner/soGehtSaechsischWeiss.png"
src="/ressourcen/graphiken/banner/soGehtSaechsischWeiss.png"
alt="So geht s&auml;chsisch"
width="2182" height="897"></amp-img>
</a>
@@ -13,7 +13,7 @@ Die Judoka des CWSV bedanken sich bei ihren Förderern:
<div>
<a href="https://integration.dosb.de" title="Integration durch Sport">
<amp-img layout="responsive"
src="http://cwsvjudo.bplaced.net/ressourcen/graphiken/logos/IntegrationDurchSport2018.250x.png"
src="/ressourcen/graphiken/logos/IntegrationDurchSport2018.250x.png"
title="Integration durch Sport - Anerkannter Stützpunktverein"
alt="Integration durch Sport - Anerkannter Stützpunktverein"
width="250" height="416"></amp-img>

View File

@@ -2,22 +2,18 @@ Die Judoka des CWSV bedanken sich bei ihren Förderern:
<ul class="sponsorList">
<li>Der CWSV e.V. ist Werbebotschafter der Aktion "So geht sächsisch"
<a href="https://www.so-geht-saechsisch.de" title="So geht s&auml;chsisch">
<img
src="http://cwsvjudo.bplaced.net/ressourcen/graphiken/banner/soGehtSaechsischWeiss.png"
alt="So geht s&auml;chsisch"
width="2182" height="897">
<img src="/ressourcen/graphiken/banner/soGehtSaechsischWeiss.png" alt="So geht s&auml;chsisch" width="2182"
height="897">
</a>
</li>
<li>
Der CWSV ist anerkannter Stützpunktverein des Bundesprogrammes „Integration durch Sport”
<div>
<a href="https://integration.dosb.de" title="Integration durch Sport">
<img
src="http://cwsvjudo.bplaced.net/ressourcen/graphiken/logos/IntegrationDurchSport2018.250x.png"
title="Integration durch Sport - Anerkannter Stützpunktverein"
alt="Integration durch Sport - Anerkannter Stützpunktverein"
width="250" height="416">
<img src="/ressourcen/graphiken/logos/IntegrationDurchSport2018.250x.png"
title="Integration durch Sport - Anerkannter Stützpunktverein"
alt="Integration durch Sport - Anerkannter Stützpunktverein" width="250" height="416">
</a>
</div>
</li>
</ul>
</ul>

View File

@@ -5,14 +5,14 @@ cwsvJudoLogoWappen: &cwsvJudoLogoWappen
alt: "cwsvJudo"
title: "Judo im Chemnitzer WSV - Logo"
src: "<?php echo($canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvJudoLogoWappen.64w.png"
srcset: "<?php echo($canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvJudoLogoWappen.128w.png 2x, <?php echo($canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvJudoLogoWappen.x256.png 4x"
srcset: "<?php echo($canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvJudoLogoWappen.128w.png 2x, <?php echo($canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvJudoLogoWappen.256w.png 4x"
cwsvLogoWappen: &cwsvLogoWappen
width: "64"
height: "77"
alt: "CWSV"
title: "Chemnitzer WSV - Logo"
src: "<?php echo($canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvLogoWappen.64w.png"
srcset: "<?php echo($canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvLogoWappen.128w.png 2x, <?php echo($canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvLogoWappen.x250.png 4x"
srcset: "<?php echo($canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvLogoWappen.128w.png 2x, <?php echo($canonicalBaseUrl); ?>/ressourcen/graphiken/logos/cwsvLogoWappen.256x.png 4x"
iconClockFriendly: &iconClockFriendly
width: "112"
height: "112"