Skip to content

Commit

Permalink
Set up foundations for layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Sophie Shepherd committed Jan 25, 2019
1 parent a7899d8 commit ceb5c39
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 0 deletions.
2 changes: 2 additions & 0 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
</body>
</html>
8 changes: 8 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -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 changes: 5 additions & 0 deletions _layouts/sidebar.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{% include header.html %}

{{ content }}

{% include footer.html %}
5 changes: 5 additions & 0 deletions _layouts/stacked.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{% include header.html %}

{{ content }}

{% include footer.html %}
15 changes: 15 additions & 0 deletions _site/layout-sidebar.html
Original file line number Diff line number Diff line change
@@ -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 changes: 15 additions & 0 deletions _site/layout-stacked.html
Original file line number Diff line number Diff line change
@@ -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 changes: 3 additions & 0 deletions layout-sidebar.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
layout: sidebar
---
3 changes: 3 additions & 0 deletions layout-stacked.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
layout: stacked
---

0 comments on commit ceb5c39

Please sign in to comment.