- urlRewriting für "schönere" URL neue Datei: markdownExperiment/.htaccess neue Datei: markdownExperiment/.htaccess-phpAppender - Ergänzungen im buildProzess geändert: markdownExperiment/Makefile - Umstellung auf externe yamlNavTargets - buildFiles sind wiederherstellbar und müsen nicht getrackt werden gelöscht: markdownExperiment/build/.uploadMarker/css/cwsvJudo.css gelöscht: markdownExperiment/build/.uploadMarker/kontakt.php gelöscht: markdownExperiment/build/.uploadMarker/verein.php gelöscht: markdownExperiment/build/.uploadMarker/wkKalender.php gelöscht: markdownExperiment/build/css/cwsvJudo.css gelöscht: markdownExperiment/build/kontakt.php gelöscht: markdownExperiment/build/verein.php gelöscht: markdownExperiment/build/wkKalender.php - ein config Verzeichnis für .. configDateien neue Datei: markdownExperiment/config/.htaccess neue Datei: markdownExperiment/config/cwsvJudo.config.php neue Datei: markdownExperiment/config/db.inc neue Datei: markdownExperiment/config/phpcount.config.php - Änderungen/Ergänzungen/Verbesserungen am cssDesign neue Datei: markdownExperiment/css/cwsvJudo-2018-galTable.css geändert: markdownExperiment/css/cwsvJudo-2018-mainNav.css neue Datei: markdownExperiment/css/cwsvJudo-2018-news.css geändert: markdownExperiment/css/cwsvJudo-2018-subNav.css geändert: markdownExperiment/css/cwsvJudo-2018-wkKalender.css - neue Seiten - Umstellung auf referenzierte navTargets neue Datei: markdownExperiment/md/galerien.md neue Datei: markdownExperiment/md/index.md neue Datei: markdownExperiment/md/indexTest.md geändert: markdownExperiment/md/kontakt.md neue Datei: markdownExperiment/md/trainingszeiten.md geändert: markdownExperiment/md/verein.md geändert: markdownExperiment/md/wkKalender.md - kleinere Änderungen geändert: markdownExperiment/pandocTemplate/cwsvJudo.html5.pandocTemplate - dynamische Inhalte werden mittels phpAufrufen realisiert neue Datei: markdownExperiment/phpLib/cwsvJudo/galTable.php geändert: markdownExperiment/phpLib/cwsvJudo/newsLib.php neue Datei: markdownExperiment/phpLib/cwsvJudo/newsTableHtml.php geändert: markdownExperiment/phpLib/cwsvJudo/wkKalender.php - neuer Counter neue Datei: markdownExperiment/phpLib/phpcount - Experimente zu Anchor/References in yamlFiles im Zusammenspiel mit pandoc neue Datei: markdownExperiment/temp/testingYamlRef/refTest.yaml neue Datei: markdownExperiment/temp/testingYamlRef/refTestB.yaml neue Datei: markdownExperiment/temp/testingYamlRef/refTestWikipedia.md neue Datei: markdownExperiment/temp/testingYamlRef/refTestWikipedia.yaml neue Datei: markdownExperiment/temp/testingYamlRef/yamltest.pandocTemplate - pythonTool zum Mergen von yamlFiles neue Datei: markdownExperiment/tools/yamlMerge.py - Auslagerungen von navTargets in eigene yamlFiles, damit mehrfach vorkommende Ziele referenziert werden können (DRY) neue Datei: markdownExperiment/index.yaml neue Datei: markdownExperiment/yaml/galerien.subNav.yaml neue Datei: markdownExperiment/yaml/index.subNav.yaml neue Datei: markdownExperiment/yaml/kontakt.subNav.yaml neue Datei: markdownExperiment/yaml/mainNav.yaml neue Datei: markdownExperiment/yaml/navTargets.yaml neue Datei: markdownExperiment/yaml/trainingszeiten.subNav.yaml neue Datei: markdownExperiment/yaml/verein.subNav.yaml neue Datei: markdownExperiment/yaml/wkKalender.subNav.yaml
150 lines
5.4 KiB
Plaintext
150 lines
5.4 KiB
Plaintext
<!DOCTYPE html>
|
||
<!---
|
||
<?php
|
||
/// Einbinden der Konfiguration, insbesondere Basisvariablen,
|
||
/// relative Pfadangabe
|
||
/// - jedes Verzeichnis sollte seine eigene haben
|
||
/// - theoretisch sollte es bereits von der aufrufenden Datei
|
||
/// eingebunden sein
|
||
require_once("./config.inc.php");
|
||
// include_once("./config.inc.php");
|
||
require_once($$basePath."/config/phpcount.config.php");
|
||
require_once($$basePath."/config/cwsvJudo.config.php");
|
||
require_once($$basePath."/ressourcen/phpLib/cwsvJudo/miscAssis.php");
|
||
require_once($$basePath."/ressourcen/phpLib/cwsvJudo/newsLib.php");
|
||
require_once($$basePath."/ressourcen/phpLib/cwsvJudo/wkKalender.php");
|
||
require_once($$basePath."/ressourcen/phpLib/cwsvJudo/galTable.php");
|
||
require_once($$basePath."/ressourcen/phpLib/cwsvJudo/newsTableHtml.php");
|
||
require_once($$basePath."/ressourcen/phpLib/cwsvJudo/newsTableHtml.php");
|
||
require_once($$basePath."/ressourcen/phpLib/phpcount/phpcount.php");
|
||
|
||
PHPCount::AddHit("$title$");
|
||
?>
|
||
-->
|
||
<html$if(lang)$ lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$>
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
||
$for(author-meta)$
|
||
<meta name="author" content="$author-meta$">
|
||
$endfor$
|
||
$if(date-meta)$
|
||
<meta name="dcterms.date" content="$date-meta$">
|
||
$endif$
|
||
$if(keywords)$
|
||
<meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$">
|
||
$endif$
|
||
$if(description)$
|
||
<meta name="description" content="$description$" />
|
||
$endif$
|
||
<title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
|
||
<style type="text/css">code{white-space: pre;}</style>
|
||
$if(quotes)$
|
||
<style type="text/css">q { quotes: "“" "”" "‘" "’"; }</style>
|
||
$endif$
|
||
$if(highlighting-css)$
|
||
<style type="text/css">
|
||
$highlighting-css$
|
||
</style>
|
||
$endif$
|
||
$for(css)$
|
||
<link rel="stylesheet" href="$css$">
|
||
$endfor$
|
||
$if(math)$
|
||
$math$
|
||
$endif$
|
||
$for(header-includes)$
|
||
$header-includes$
|
||
$endfor$
|
||
</head>
|
||
<body>
|
||
<!-- Kopfzeile mit Titel, Promobildern und Breadcrumbs -->
|
||
<header class="cwsvHeader">
|
||
<img width="200" height="140" title="Judo im Chemnitzer WSV" alt="Judo im Chemnitzer WSV - Promo" src="http://cwsvjudo.bplaced.net/ressourcen/graphiken/banner/bannerlogo.1.jpg" />
|
||
<span>Judo</span>
|
||
<span class="breadcrumbs"></span>
|
||
<img width="250" height="200" title="Judo im Chemnitzer WSV" alt="Judo im Chemnitzer WSV - Logo" src="http://cwsvjudo.bplaced.net/ressourcen/graphiken/banner/cwsv-judo-logo.png" />
|
||
</header>
|
||
|
||
$if(mainNav)$
|
||
<nav id="mainNav">
|
||
$for(mainNav)$
|
||
<a href="$mainNav.url$"
|
||
$if(mainNav.caption)$title="$mainNav.caption$" $endif$
|
||
$if(mainNav.active)$class="activeNav" $endif$
|
||
>
|
||
$if(mainNav.icon)$<img src="$mainNav.icon$" $if(mainNav.caption)$alt="$mainNav.caption$" $endif$/>$endif$
|
||
$if(mainNav.caption)$<span>$mainNav.caption$</span>$endif$
|
||
</a>
|
||
$endfor$
|
||
</nav>
|
||
$endif$
|
||
|
||
$if(subNav)$
|
||
<nav class="subNav">
|
||
$for(subNav)$
|
||
<a href="$subNav.url$"
|
||
$if(subNav.caption)$title="$subNav.caption$" $endif$
|
||
$if(subNav.active)$class="activeNav" $endif$
|
||
>
|
||
$if(subNav.icon)$<img src="$subNav.icon$" $if(subNav.caption)$alt="$subNav.caption$" $endif$/>$endif$
|
||
$if(subNav.caption)$<span>$subNav.caption$</span>$endif$
|
||
</a>
|
||
$endfor$
|
||
<a href="#mainNav"
|
||
title="Hauptnavigation"
|
||
>
|
||
<img src="http://cwsvjudo.bplaced.net/ressourcen/graphiken/icons/arrowRightDown.svg" alt="Menü" />
|
||
<span>zur Hauptnavigation</span>
|
||
</a>
|
||
</nav>
|
||
$endif$
|
||
|
||
$for(include-before)$
|
||
$include-before$
|
||
$endfor$
|
||
$if(toc)$
|
||
<nav id="$idprefix$TOC">
|
||
$toc$
|
||
</nav>
|
||
$endif$
|
||
|
||
<main id="content">
|
||
$body$
|
||
</main>
|
||
|
||
<aside class="sideNotes">
|
||
Die Judoka des CWSV bedanken sich bei ihren Förderern:
|
||
<ul class="sponsorList">
|
||
<li>
|
||
Familie Mögel für den unermüdlichen Einsatz als Fans, Fahrer, Fotograf und Vertretung
|
||
</li>
|
||
<li>
|
||
Druck + Werbestudio Eckart & Partner
|
||
<div><a title="Druck + Werbestudio Eckart & Partner" href="http://www.dws-eckart.de">
|
||
<img width="300" height="107" src="http://cwsvjudo.bplaced.net/ressourcen/graphiken/sponsoren/EckartUndPartner.png" title="Druck + Werbestudio Eckart & Partner GmbH" alt="Druck + Werbestudio Eckart & Partner Logo">
|
||
</a>
|
||
</div>
|
||
</li>
|
||
<li>
|
||
Der CWSV ist anerkannter Stützpunktverein des Bundesprogrammes „Integration durch Sport”
|
||
<div>
|
||
<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ützpunktverein" alt="Integration durch Sport - Anerkannter Stützpunktverein" width="250" height="416">
|
||
</a>
|
||
</div>
|
||
</li>
|
||
</ul>
|
||
</aside>
|
||
|
||
<footer class="footerBar">
|
||
<a class="touchLink" title="Seite auf HTML 5 Konformität prüfen" href="http://validator.w3.org/check?uri=<?php echo(urlencode(getCurPagesUrl()));?>" rel="nofollow">Valid <img src="http://www.w3.org/html/logo/downloads/HTML5_1Color_Black.svg" alt="HTML 5" title="HTML 5 Logo" class="charImg"></a>
|
||
<a class="touchLink" title="Möglichkeiten mit dem Chemnitzer Freizeit- und Wohngebietssportverein in Kontakt zu treten" href="<?php echo($$baseUrl);?>/pages/desktop/kontakt.php" >Kontakt</a>
|
||
</footer>
|
||
|
||
$for(include-after)$
|
||
$include-after$
|
||
$endfor$
|
||
</body>
|
||
</html>
|