Diese Seite läuft auf dem Bludit CMS, ein Flat-File System, welches ohne Datenbank auskommt, eine Open Source Anwedung unter der MIT-Lizenz. Mehr Infos unter: https://docs.bludit.com/de/
Version: 3.16.2
Benutztes Theme: blogx
Benutze Plugins:
Änderungen:
/*12.10.2024 \bludit\bl-themes\blogx\php\footer.php */
/*Original:*/
<footer class="footer bg-dark">
<div class="container">
<p class="m-0 text-center text-white text-uppercase"><?php echo $site->footer(); ?><span class="ml-5 text-warning"><img class="mini-logo" src="<?php echo DOMAIN_THEME_IMG.'favicon.png'; ?>"/> Powered by <a target="_blank" class="text-white" href="https://www.bludit.com"><?php echo (defined('BLUDIT_PRO'))?'BLUDIT PRO':'BLUDIT' ?></a></span></p>
</div>
</footer>
/*Geändert*/
<footer class="footer bg-dark">
<div class="container">
<p class="m-0 text-center text-white text-uppercase">
<span class="ml-5 text-warning"><a target="_blank" class="text-white" href="https://creativecommons.org/licenses/by-nc/3.0/de/">CC BY-NC 3.0</span></a>
<span class="ml-5 text-warning"><a class="text-white" href="https://blog.t0by.de/unter-der-motorhaube">Motorhaube</span></a>
</p>
</div>
</footer>
/*12.10.2024 \bludit\bl-themes\blogx\php\home.php */
/*Original:*/
<!-- Creation date -->
<h6 class="card-subtitle mt-1 mb-4 text-muted">
<i class="bi bi-calendar"></i><?php echo $page->date(); ?>
<i class="ml-3 bi bi-clock-history"></i><?php echo $L->get('Reading time') . ': ' . $page->readingTime(); ?>
</h6>
/*Geändert*/
<!-- Creation date -->
<h6 class="card-subtitle mt-1 mb-4 text-muted">
<?php echo $page->date(); ?>
<!-- <i class="ml-3 bi bi-clock-history"></i> <?php echo $L->get('Reading time') . ': ' . $page->readingTime(); ?> -->
</h6>
/*12.10.2024 \bludit\bl-themes\blogx\php\navbar.php */
/*Original:*/
<!-- Static pages -->
<?php foreach ($staticContent as $staticPage) : ?>
<li class="nav-item">
<a class="nav-link" href="<?php echo $staticPage->permalink() ?>"><?php echo $staticPage->title() ?></a>
</li>
<?php endforeach ?>
<!-- Social Networks -->
<?php foreach (Theme::socialNetworks() as $key => $label) : ?>
<li class="nav-item">
<a class="nav-link" href="<?php echo $site->{$key}(); ?>" target="_blank">
<img class="d-none d-sm-block nav-svg-icon" src="<?php echo DOMAIN_THEME . 'img/' . $key . '.svg' ?>" alt="<?php echo $label ?>" />
<span class="d-inline d-sm-none"><?php echo $label; ?></span>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
</nav>
/*Geändert*/
<!-- Static pages -->
<span class="ml-5 text-warning"><a class="text-white" href="https://blog.t0by.de/kontakt">Kontakt</span></a>
<span class="ml-5 text-warning"><a class="text-white" href="https://blog.t0by.de/impressum">Impressum</span></a>
<span class="ml-5 text-warning"><a class="text-white" href="https://blog.t0by.de/datenschutz">Datenschutz</span></a>
</ul>
</div>
</div>
</nav>
/*12.10.2024 \bludit\bl-themes\blogx\php\page.php */
/*Original:*/
<!-- Creation date -->
<h6 class="card-subtitle mb-3 text-muted"><?php echo $page->date(); ?> - <?php echo $L->get('Reading time') . ': ' . $page->readingTime() ?></h6>
<?php endif ?>
<!-- Full content -->
<?php echo $page->content(); ?>
</div>
/*Geändert*/
<!-- Creation date -->
<h6 class="card-subtitle mb-3 text-muted">
Erstellt: <?php echo $page->date(); ?> |
Letzte Änderung: <?php echo $page->dateModified(); ?> |
Kategorien: <?php echo $page->category(); ?>
</h6>
<?php endif ?>
<!-- Full content -->
<?php echo $page->content(); ?>
</div>
/*12.10.2024 \bludit\bl-themes\blogx\img */
/*favicon.png ausgetauscht*/
Quellen und Verweise: