Trying Jekyll at Giraffe Academy

(V042 20200808) I am just following Mike Dane's tutorial. It is a really really great tutorial!

View on GitHub
== START MYPOST

Tutorial 14: Includes

S: Mr. Yoda-Yoda

P: Default Post Author

L: MyPost Author


HOME



== END MYPOST

Tutorial 14: Includes

Tutorial 14

New _includes folder

mkdir _includes

File header.html

<h1 style="color: ">Trying Jekyll at Giraffe Academy</h1>
<hr>
<br>

File wrapper.html

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>{{ site.title }}</title>
  <meta name="description" content="Head Meta Description">
  <meta name="author" content="Head Meta Author">
</head>
<body>
<b>START WRAPPER</b> <br>
{% include header.html color="blue" %}
{{ content }}
<br> <b>END WRAPPER</b>
</body>
</html>