Added start/end logs for included html layouts and html included files.
This commit is contained in:
parent
3a643b07cc
commit
a0ee116695
18 changed files with 122 additions and 62 deletions
|
|
@ -1,3 +1,5 @@
|
|||
<!-- Blog Layout Start -->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ site.lang }}">
|
||||
|
||||
|
|
@ -37,3 +39,5 @@
|
|||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<!-- Blog Layout End -->
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
<!-- 404 Layout Start -->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ site.lang }}">
|
||||
|
||||
|
|
@ -29,3 +31,5 @@
|
|||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<!-- 404 Layout End -->
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
<!-- Index Layout Start -->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ site.lang }}">
|
||||
|
||||
|
|
@ -5,35 +7,37 @@
|
|||
|
||||
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
|
||||
|
||||
{% include navigation.html %}
|
||||
{% include navigation.html %}
|
||||
|
||||
{% include header.html %}
|
||||
{% include header.html %}
|
||||
|
||||
{% for page in site.pages %}
|
||||
{% for page in site.pages %}
|
||||
|
||||
{% if page.section-type == "about" %}
|
||||
{% if page.section-type == "about" %}
|
||||
|
||||
{% include about.html %}
|
||||
{% include about.html %}
|
||||
|
||||
{% elsif page.section-type == "latest-post" %}
|
||||
{% elsif page.section-type == "latest-post" %}
|
||||
|
||||
{% include latest-post.html %}
|
||||
{% include latest-post.html %}
|
||||
|
||||
{% elsif page.section-type == "career" %}
|
||||
{% elsif page.section-type == "career" %}
|
||||
|
||||
{% include career.html %}
|
||||
{% include career.html %}
|
||||
|
||||
{% elsif page.section-type == "contact" %}
|
||||
{% elsif page.section-type == "contact" %}
|
||||
|
||||
{% include contact.html %}
|
||||
{% include contact.html %}
|
||||
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
||||
{% include footer.html %}
|
||||
{% include footer.html %}
|
||||
|
||||
{% include js.html %}
|
||||
{% include js.html %}
|
||||
|
||||
</body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<!-- Index Layout End -->
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
<!-- Post Layout Start -->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ site.lang }}">
|
||||
|
||||
|
|
@ -44,3 +46,5 @@
|
|||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<!-- Post Layout End -->
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
<!-- Tag Layout Start -->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ site.lang }}">
|
||||
|
||||
|
|
@ -44,3 +46,5 @@
|
|||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<!-- Tag Layout End -->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue