Added start/end logs for included html layouts and html included files.

This commit is contained in:
Panos Sakkos 2015-10-03 23:17:00 +02:00
parent 3a643b07cc
commit a0ee116695
18 changed files with 122 additions and 62 deletions

View file

@ -1,4 +1,5 @@
<!-- About Section -->
<!-- About Start -->
<section id="{{ page.title }}" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
@ -6,3 +7,5 @@
</div>
</div>
</section>
<!-- About End -->

View file

@ -1,4 +1,5 @@
<!-- Career Section -->
<!-- Career Start -->
<section id="{{ page.title }}" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
@ -39,3 +40,5 @@
</div>
</div>
</section>
<!-- Career End -->

View file

@ -1,5 +1,8 @@
<!-- Disqus Comments Start -->
{% if site.disqus-shortname %}
<div id="disqus_thread"></div>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
{% endif %}
<!-- Disqus Comments End -->

View file

@ -1,4 +1,5 @@
<!-- Contact Section -->
<!-- Contact Start -->
<section id="{{ page.title }}" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
@ -31,3 +32,5 @@
</div>
</div>
</section>
<!-- Contact End -->

View file

@ -1,9 +1,11 @@
<!-- Footer -->
<footer>
<!-- Footer Start -->
<footer>
<div class="container text-center">
<p>Copyright &copy; {{ site.author }} {{ site.time | date: "%Y" }}</p>
</div>
</footer>
</footer>
<p><br><br><br><br><br><br></p>
<p><br><br><br><br><br><br></p>
<!-- Footer End -->

View file

@ -1,3 +1,5 @@
<!-- HEAD Start -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
@ -34,3 +36,5 @@
<link rel="shortcut icon" type="image/x-icon" href="{{site.baseurl}}{{ site.favicon }}">
{% endif %}
</head>
<!-- HEAD End -->

View file

@ -1,4 +1,5 @@
<!-- Intro Header -->
<!-- Intro Start -->
<header class="intro">
<div class="intro-body">
<div class="container">
@ -15,3 +16,5 @@
</div>
</div>
</header>
<!-- Intro End -->

View file

@ -1,3 +1,5 @@
<!-- Javascript Start -->
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
@ -76,3 +78,5 @@
{% endif %}
{% endif %}
<!-- Javascript End -->

View file

@ -1,4 +1,5 @@
<!-- Blog Section -->
<!-- Latest Post Preview Start -->
<section id="{{ page.title }}" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
@ -19,3 +20,5 @@
</div>
</div>
</section>
<!-- Latest Post Preview End -->

View file

@ -1,4 +1,5 @@
<!-- Navigation -->
<!-- Navigation Start -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
@ -20,6 +21,7 @@
<li class="hidden">
<a href="#page-top"></a>
</li>
{% if page.section-type == "index" %}
<!-- Scroll to section for each page in index -->
@ -47,10 +49,10 @@
</li>
{% endif %}
{% endfor %}
{% endif %}
</ul>
</div>
</div>
</nav>
<!-- Navigation End -->

View file

@ -1,4 +1,4 @@
<!-- Pagination links -->
<!-- Pagination Links Start -->
<div class="pagination">
@ -16,3 +16,5 @@
<h4><a href="{{site.baseurl}}{{ paginator.next_page_path }}" class="next">Older Posts</a></h4>
{% endif %}
</div>
<!-- Pagination Links End -->

View file

@ -1,3 +1,5 @@
<!-- Share Buttons Start -->
<div>
{% if site.fb-share %}
<div style="float:left; padding: 0 5px; vertical-align:top">
@ -20,3 +22,5 @@
</div>
{% endif %}
</div>
<!-- Share Buttons End -->

View file

@ -1,5 +1,9 @@
<!-- Social Buttons Start -->
<ul class="list-inline social-buttons">
{% for network in site.social %}
<li><a href="{{site.baseurl}}{{ network.url }}" target="_blank"><i class="fa fa-{{ network.title }} fa-fw"></i></a></li>
{% endfor %}
</ul>
<!-- Social Buttons End -->

View file

@ -1,3 +1,5 @@
<!-- Blog Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
@ -37,3 +39,5 @@
</body>
</html>
<!-- Blog Layout End -->

View file

@ -1,3 +1,5 @@
<!-- 404 Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
@ -29,3 +31,5 @@
</body>
</html>
<!-- 404 Layout End -->

View file

@ -1,3 +1,5 @@
<!-- Index Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
@ -35,5 +37,7 @@
{% include js.html %}
</body>
</body>
</html>
<!-- Index Layout End -->

View file

@ -1,3 +1,5 @@
<!-- Post Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
@ -44,3 +46,5 @@
</body>
</html>
<!-- Post Layout End -->

View file

@ -1,3 +1,5 @@
<!-- Tag Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
@ -44,3 +46,5 @@
</body>
</html>
<!-- Tag Layout End -->