😊 Fixed missing </html> tag

This commit is contained in:
Nurlan Su 2016-10-25 02:14:23 +02:00
parent d715c8f553
commit fc9659aef4
4 changed files with 107 additions and 103 deletions

View File

@ -1,5 +1,5 @@
{{ partial "head" . }} {{ partial "head" . }}
<body> <body>
<div id="wrap"> <div id="wrap">
{{ partial "header" . }} {{ partial "header" . }}
<div class="container"> <div class="container">
@ -9,4 +9,5 @@
</div> </div>
</div> </div>
{{ partial "footer" . }} {{ partial "footer" . }}
</body> </body>
</html>

View File

@ -1,5 +1,5 @@
{{ partial "head" . }} {{ partial "head" . }}
<body> <body>
<div id="wrap"> <div id="wrap">
<!-- Header --> <!-- Header -->
{{ partial "header" . }} {{ partial "header" . }}
@ -27,4 +27,5 @@
</div> </div>
<!-- Footer --> <!-- Footer -->
{{ partial "footer" . }} {{ partial "footer" . }}
</body> </body>
</html>

View File

@ -1,5 +1,5 @@
{{ partial "head" . }} {{ partial "head" . }}
<body> <body>
<div id="wrap"> <div id="wrap">
<!-- Header --> <!-- Header -->
@ -56,4 +56,5 @@
<!-- Footer --> <!-- Footer -->
{{ partial "footer" . }} {{ partial "footer" . }}
</body> </body>
</html>

View File

@ -1,5 +1,5 @@
{{ partial "head" . }} {{ partial "head" . }}
<body> <body>
<div id="wrap"> <div id="wrap">
{{ partial "header" . }} {{ partial "header" . }}
<section id="about"> <section id="about">
@ -17,4 +17,5 @@
</section> </section>
</div> </div>
{{ partial "footer" . }} {{ partial "footer" . }}
</body> </body>
</html>