Skip to content

Commit

Permalink
change page template
Browse files Browse the repository at this point in the history
  • Loading branch information
tisimpson committed May 8, 2024
1 parent cae3e4c commit 69d827f
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions _layouts/page.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
</head>
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">

{%- include head.html -%}

<body>
{{ content }}

{%- include header.html -%}

<main class="page-content" aria-label="Content">
<div class="wrapper">
{{ content }}
</div>
</main>

{%- include footer.html -%}

</body>

</html>

0 comments on commit 69d827f

Please sign in to comment.