From 412705aad69f511b6062e94cafa3fb1353d54bdc Mon Sep 17 00:00:00 2001 From: equilet <2237372+equilet@users.noreply.github.com> Date: Fri, 9 Dec 2022 14:46:24 -0800 Subject: [PATCH] cleaned up layouts so that children are identical, simplified default with flex container --- _layouts/default.html | 37 ++++++++++++++++++++++++------------- _layouts/home.html | 4 ---- _layouts/job.html | 8 +------- _layouts/page.html | 8 +------- _layouts/project.html | 8 +------- 5 files changed, 27 insertions(+), 38 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index 1119120..97f54de 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,20 +1,31 @@ - - {%- include head.html -%} + + - - - {%- include nav.html -%} - -
-
- {{ content }} -
-
+ + {{ page.title }} - {%- include footer.html -%} + - + + + {%- include head.html -%} + +
+ + + +
+ {{ content }} +
+ +
+ + {%- include footer.html -%} + + diff --git a/_layouts/home.html b/_layouts/home.html index 5b99424..936120d 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -3,9 +3,5 @@ layout: default ---
- {{ content }} - - {%- include project-list.html -%} -
diff --git a/_layouts/job.html b/_layouts/job.html index d0773f4..68a2edd 100644 --- a/_layouts/job.html +++ b/_layouts/job.html @@ -3,11 +3,5 @@ layout: default ---
- {{ content }} - -
- - \ No newline at end of file + \ No newline at end of file diff --git a/_layouts/page.html b/_layouts/page.html index ccace13..cde6f7e 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -3,11 +3,5 @@ layout: default ---
- {{ content }} - -
- - \ No newline at end of file + \ No newline at end of file diff --git a/_layouts/project.html b/_layouts/project.html index 79f351e..7feb824 100644 --- a/_layouts/project.html +++ b/_layouts/project.html @@ -3,11 +3,5 @@ layout: default ---
- {{ content }} - -
- - \ No newline at end of file + \ No newline at end of file -- 2.34.1