More Updated files for mikescher.com
This commit is contained in:
parent
fd596bd16b
commit
86bad2a1c9
@ -16,7 +16,7 @@ $this->selectedNav = '';
|
||||
|
||||
<div class="container">
|
||||
|
||||
<?php echo MsHtml::pageHeader("Site-log", "Changelog and Blog for mikescher.de"); ?>
|
||||
<?php echo MsHtml::pageHeader("Site-log", "Changelog and Blog for mikescher.com"); ?>
|
||||
|
||||
<div class="accordion" id="lca">
|
||||
<?php
|
||||
|
@ -17,7 +17,7 @@ $this->selectedNav = 'about';
|
||||
<?php if (isset($alerts_success)) foreach($alerts_success as $alert) echo MsHtml::alert(MsHtml::ALERT_COLOR_SUCCESS, $alert); ?>
|
||||
<?php if (isset($alerts_error)) foreach($alerts_error as $alert) echo MsHtml::alert(MsHtml::ALERT_COLOR_ERROR, $alert); ?>
|
||||
|
||||
<?php echo MsHtml::pageHeader('About Mikescher.de', ''); ?>
|
||||
<?php echo MsHtml::pageHeader('About Mikescher.com', ''); ?>
|
||||
|
||||
<div class="well cstm-well-light">
|
||||
<p>Welcome to my private homepage.</p>
|
||||
|
@ -126,15 +126,23 @@ array_push($this->js_files, '/javascript/msmain_admin_script.js');
|
||||
|
||||
<div class="well well-small">
|
||||
<?php
|
||||
$egh = $egh = (new ExtendedGitGraph('Mikescher'))->loadFinishedData();
|
||||
if (file_exists('protected/data/git_graph_data.dat'))
|
||||
{
|
||||
$egh = $egh = (new ExtendedGitGraph('Mikescher'))->loadFinishedData();
|
||||
}
|
||||
else
|
||||
{
|
||||
$egh = null;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<h2>ExtendedGitGraph</h2>
|
||||
<hr>
|
||||
|
||||
<strong>Last Update: </strong> <?php echo $egh['creation']->format('d.m.Y H:i'); ?> <br>
|
||||
<strong>Repositories: </strong> <?php echo $egh['repos']; ?> <br>
|
||||
<strong>Commits: </strong> <?php echo $egh['total']; ?> <br>
|
||||
<strong>Last Update: </strong> <?php if ($egh != null) { echo $egh['creation']->format('d.m.Y H:i'); } ?> <br>
|
||||
<strong>Repositories: </strong> <?php if ($egh != null) { echo $egh['repos']; } ?> <br>
|
||||
<strong>Commits: </strong> <?php if ($egh != null) { echo $egh['total']; } ?> <br>
|
||||
|
||||
<br><br>
|
||||
|
||||
@ -154,9 +162,9 @@ array_push($this->js_files, '/javascript/msmain_admin_script.js');
|
||||
<ul>
|
||||
<li><a href="https://mikescher-de.disqus.com">Disqus Admin Panel</a></li>
|
||||
<li><a href="https://www.strato.de/apps/CustomerService">Strato Customer Service</a></li>
|
||||
<li><a href="http://v1.mikescher.de">Mikescher.de Wayback (v1)</a></li>
|
||||
<li><a href="http://v2.mikescher.de">Mikescher.de Wayback (v2)</a></li>
|
||||
<li><a href="http://v3.mikescher.de">Mikescher.de Wayback (v3)</a></li>
|
||||
<li><a href="http://v1.mikescher.com">Mikescher Wayback (v1)</a></li>
|
||||
<li><a href="http://v2.mikescher.com">Mikescher Wayback (v2)</a></li>
|
||||
<li><a href="http://v3.mikescher.com">Mikescher Wayback (v3)</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="well well-small">
|
||||
|
Loading…
Reference in New Issue
Block a user