Set up foundations for layout
This commit is contained in:
parent
a7899d84a6
commit
ceb5c3935f
8 changed files with 56 additions and 0 deletions
2
_includes/footer.html
Normal file
2
_includes/footer.html
Normal file
|
@ -0,0 +1,2 @@
|
|||
</body>
|
||||
</html>
|
8
_includes/header.html
Normal file
8
_includes/header.html
Normal 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
5
_layouts/sidebar.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
{% include header.html %}
|
||||
|
||||
{{ content }}
|
||||
|
||||
{% include footer.html %}
|
5
_layouts/stacked.html
Normal file
5
_layouts/stacked.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
{% include header.html %}
|
||||
|
||||
{{ content }}
|
||||
|
||||
{% include footer.html %}
|
15
_site/layout-sidebar.html
Normal file
15
_site/layout-sidebar.html
Normal 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
15
_site/layout-stacked.html
Normal 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
3
layout-sidebar.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
layout: sidebar
|
||||
---
|
3
layout-stacked.html
Normal file
3
layout-stacked.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
layout: stacked
|
||||
---
|
Loading…
Reference in a new issue