blob: db6dfb5084135fdbda36fa5640196f462df9cc16 (
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>
|