-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add frontmatter to markdown files, update layouts, and integrate Boot…
…strap
- Loading branch information
1 parent
83db0cc
commit 7addc9f
Showing
6 changed files
with
42 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# Andrew Shaw Care | ||
--- | ||
title: Andrew Shaw Care | ||
--- | ||
|
||
{% table-of-contents type="anthologies" %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
{% partial file="head.md" /%} | ||
|
||
<body> | ||
<body class="p-3 container"> | ||
|
||
<article> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
{% partial file="head.md" /%} | ||
|
||
<body> | ||
<body class="p-3 container"> | ||
|
||
# {% $frontmatter.title %} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<html lang="en"> | ||
|
||
{% partial file="head.md" /%} | ||
|
||
<body> | ||
|
||
<article class="w-50 my-3 mx-auto p-3 card"> | ||
|
||
<header> | ||
|
||
# {% $frontmatter.title %} | ||
|
||
<nav> | ||
|
||
{% table-of-contents type="headings" /%} | ||
|
||
</nav> | ||
|
||
</header> | ||
|
||
<main> | ||
|
||
{% $content %} | ||
|
||
</main> | ||
|
||
</article> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters