0
0

Almost finished the website - revision 1 obviously

Moved the entire title from the javascript to the PHP section,
finished almost all templates,
moved the footer on the main "template holder" page,
extended the session to three days instead of just one for no technical reasons,
added CHANGELOG,
added three background images
This commit is contained in:
Bryan Pedini
2019-01-20 00:06:11 +01:00
parent 0f24e8322b
commit ec496c7ce1
11 changed files with 201 additions and 41 deletions

View File

@@ -1,5 +1,5 @@
<?php
$session_timeout_days = 1;
$session_timeout_days = 3;
$session_timeout_hours = 0;
$session_timeout_minutes = 0;
$session_timeout_seconds = 0;
@@ -49,7 +49,7 @@
];
$page_content_array = [
'status' => 200,
'pageTitle' => $requested_section_title,
'pageTitle' => $requested_section_title.' | Bryan Pedini',
'html' => $section_templates [ $requested_section ]
];
$page_content_json = json_encode($page_content_array);
@@ -105,6 +105,41 @@
<div id="user-content">
</div>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<ul class="list-inline text-center">
<li class="list-inline-item">
<a href="#">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-instagram fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-git fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-dev fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<p class="copyright text-muted">&copy; Bryan Pedini <?php echo date("Y"); ?> - All rights reserved.<br>Send me an email at <a href="mailto:copyright@bryanpedini.it">this</a> link for copyright and permissions questions.</p>
</div>
</div>
</div>
</footer>
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="js/clean-blog.min.js"></script>