<!DOCTYPE html>
-<html lang="{{ page.lang | default: site.lang | default: "en" }}">
- {%- include head.html -%}
+<html lang="en">
+ <head>
- <body>
-
- {%- include nav.html -%}
-
- <main class="content">
- <div class="wrapper">
- {{ content }}
- </div>
- </main>
+ <meta charset="utf-8">
+ <title>{{ page.title }}</title> <!-- title of the tab or window in browser -->
- {%- include footer.html -%}
+ </head>
- </body>
+ <body>
+
+ {%- include head.html -%} <!-- styling and includes; init -->
+
+ <div class="flex-container">
+
+ <div class="nav">
+ {%- include nav.html -%} <!-- navigation -->
+ </div>
+
+ <div class="content">
+ {{ content }}
+ </div>
+
+ </div>
+
+ {%- include footer.html -%}
+
+ </body>
</html>
---
<div class="home">
-
{{ content }}
-
- {%- include project-list.html -%}
-
</div>
---
<div class="job">
-
{{ content }}
-
-</div>
-
-<footer class="post-footer">
- <a href="/" >← home</a>
-</footer>
\ No newline at end of file
+</div>
\ No newline at end of file
---
<div class="page">
-
{{ content }}
-
-</div>
-
-<footer class="post-footer">
- <a href="/" >← home</a>
-</footer>
\ No newline at end of file
+</div>
\ No newline at end of file
---
<div class="project">
-
{{ content }}
-
-</div>
-
-<footer class="post-footer">
- <a href="/" >← home</a>
-</footer>
\ No newline at end of file
+</div>
\ No newline at end of file