diff options
| -rw-r--r-- | 404.html | 3 | ||||
| -rw-r--r-- | _config.yml | 2 | ||||
| -rw-r--r-- | about.html | 5 | ||||
| -rw-r--r-- | blog.html | 3 | ||||
| -rw-r--r-- | index.html | 6 |
5 files changed, 8 insertions, 11 deletions
@@ -1,10 +1,9 @@ --- -project: Andrew's Website --- <HTML> <HEAD> {% include heading.html %} - <TITLE>404 | Andrew Lee</TITLE> + <TITLE>404 | {{ site.title }}</TITLE> </HEAD> <BODY> {% include navigator.html %} diff --git a/_config.yml b/_config.yml index feb4e65..f839b2e 100644 --- a/_config.yml +++ b/_config.yml @@ -13,7 +13,7 @@ # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. -title: Andrew's Website +title: Andrew Lee email: alee14498@gmail.com description: >- # this means to ignore newlines until "baseurl:" Andrew's personal website @@ -1,15 +1,14 @@ --- -project: Andrew's Website --- <HTML> <HEAD> {% include heading.html %} - <TITLE>About | Andrew Lee</TITLE> + <TITLE>About | {{ site.title }}</TITLE> </HEAD> <BODY> {% include navigator.html %} -<h1 class ="title">About Andrew</h1> +<h1 class ="title">About {{ site.title }}</h1> <h2>Contact me</h2> <p>Email Address: {{ site.email }}</p> <p>GitHub: <a href="https://github.com/Alee14">Alee14</a></p> @@ -1,11 +1,10 @@ --- -project: Andrew's Website --- <HTML> <HEAD> {% include heading.html %} - <TITLE>Blog | Andrew Lee</TITLE> + <TITLE>Blog | {{ site.title }}</TITLE> </HEAD> <BODY> {% include navigator.html %} @@ -1,15 +1,15 @@ --- -project: Andrew's Website +project: Andrew Lee --- <HTML> <HEAD> {% include heading.html %} - <TITLE>Home | Andrew Lee</TITLE> + <TITLE>Home | {{ site.title }}</TITLE> </HEAD> <BODY> {% include navigator.html %} -<h1 class ="title">{{ site.title }}</h1> +<h1 class ="title">{{ site.title }} Homepage</h1> <h2>Who am I?</h2> <p>Hello! My name is Andrew Lee and I live in Montreal and I like program things such as C# and JavaScript.</p> <h2>When did I start programming?</h2> |
