diff options
| -rw-r--r-- | _layouts/default.html | 16 | ||||
| -rw-r--r-- | about.md (renamed from about.html) | 14 | ||||
| -rw-r--r-- | project.md (renamed from project.html) | 14 |
3 files changed, 21 insertions, 23 deletions
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..0c85d3c --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,16 @@ +--- +--- + +<HTML> + <HEAD> + {% include heading.html %} + <TITLE>{{ page.title }} | {{ site.title }}</TITLE> + </HEAD> +<BODY> + {% include navigator.html %} + + {{ content }} + + {% include footer.html %} +</BODY> +</HTML> @@ -1,20 +1,12 @@ --- +layout: default +title: About --- +<h1 class ="title">About Andrew Lee</h1> -<HTML> - <HEAD> - {% include heading.html %} - <TITLE>About | {{ site.title }}</TITLE> - </HEAD> -<BODY> - {% include navigator.html %} -<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> <p>Twitter: <a href="https://twitter.com/Alee14498">Alee14498</a></p> <p>YouTube: <a href="https://youtube.com/user/Andrew14Lee/">Andrew Lee</a></p> <p>Discord: <a href="https://discord.gg/EFhRDqG">Alee's Community</a></p> - {% include footer.html %} -</BODY> -</HTML> diff --git a/project.html b/project.md index ccb2109..a4ea4a7 100644 --- a/project.html +++ b/project.md @@ -1,20 +1,10 @@ --- -project: Andrew's Website +layout: default +title: Projects --- -<HTML> - <HEAD> - {% include heading.html %} - <TITLE>Projects | Andrew Lee</TITLE> - </HEAD> -<BODY> - {% include navigator.html %} <h1 class ="title">Andrew's Projects</h1> <h2>These are the projects i'm currently working on:</h2> <p><a href="https://silicon-linux.net">Silicon Linux</a></p> <p><a href="https://github.com/AleeCorp/AleeBot">AleeBot</a></p> <p><a href="https://github.com/UniverseDevGroup/Project-Silicon">Project: Silicon</a></p> - - {% include footer.html %} -</BODY> -</HTML> |
