refactor: consistent spacing in <body>

This commit is contained in:
Ming Di Leom 2021-02-22 07:02:44 +00:00
parent f9889702b7
commit 748fec2f1d
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
1 changed files with 4 additions and 4 deletions

View File

@ -3,14 +3,14 @@
<%- partial('_partial/head', {}) %> <%- partial('_partial/head', {}) %>
<%/* set /about page to use "home" page layout */%> <%/* set /about page to use "home" page layout */%>
<% if (is_current('about/index.html')) { %> <% if (is_current('about/index.html')) { %>
<body class="about-body"> <body class="about-body">
<% } else {%> <% } else {%>
<body> <body>
<% } %> <% } %>
<div id="container" class="container"> <div id="container" class="container">
<%- body %> <%- body %>
</div> </div>
<%- partial('_partial/footer') %> <%- partial('_partial/footer') %>
<%- partial('_partial/after-footer') %> <%- partial('_partial/after-footer') %>
</body> </body>
</html> </html>