blob: d204ff4790d733f65a94199015fd01215c1b8440 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html lang="<%= config.language %> ">
<%- partial('_partial/head') %>
<body>
<%- partial('_partial/header') %>
<div class="wrapper">
<section class="hero">
<div class="hero-body">
<div class="container">
<%- body %>
</div>
</div>
</section>
</div>
<%- partial('_partial/footer') %>
</body>
<%- partial('_partial/scripts') %>
</html>
|