You've already forked bryanpedini.it_old
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:
39
index.php
39
index.php
@@ -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">© 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>
|
||||
|
Reference in New Issue
Block a user