Set up foundations for layout

This commit is contained in:
Sophie Shepherd 2019-01-25 10:35:18 -06:00
parent a7899d84a6
commit ceb5c3935f
8 changed files with 56 additions and 0 deletions

2
_includes/footer.html Normal file
View file

@ -0,0 +1,2 @@
</body>
</html>

8
_includes/header.html Normal file
View file

@ -0,0 +1,8 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ site.github.project_title }}</title>
<link href="/assets/styles.css" rel="stylesheet" type="text/css">
</head>
<body>

5
_layouts/sidebar.html Normal file
View file

@ -0,0 +1,5 @@
{% include header.html %}
{{ content }}
{% include footer.html %}

5
_layouts/stacked.html Normal file
View file

@ -0,0 +1,5 @@
{% include header.html %}
{{ content }}
{% include footer.html %}

15
_site/layout-sidebar.html Normal file
View file

@ -0,0 +1,15 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>profile-generator</title>
<link href="/assets/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
</body>
</html>

15
_site/layout-stacked.html Normal file
View file

@ -0,0 +1,15 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>profile-generator</title>
<link href="/assets/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
</body>
</html>

3
layout-sidebar.html Normal file
View file

@ -0,0 +1,3 @@
---
layout: sidebar
---

3
layout-stacked.html Normal file
View file

@ -0,0 +1,3 @@
---
layout: stacked
---