Skip to content

Commit 8a9181c

Browse files
authored
Create default.html
1 parent 3ff01c1 commit 8a9181c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

site/_layouts/default.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>{{ page.title }}</title>
6+
<link rel="stylesheet" href="{{ '/assets/style.css' | relative_url }}">
7+
</head>
8+
<body>
9+
<div class="container">
10+
<aside class="sidebar">
11+
{% include nav.html %}
12+
</aside>
13+
<main class="content">
14+
{{ content }}
15+
</main>
16+
</div>
17+
</body>
18+
</html>

0 commit comments

Comments
 (0)