add a real article and keep messing with CSS/HTML

This commit is contained in:
2017-12-18 21:15:35 -08:00
parent f3a65eb0f4
commit 708e8a142b
10 changed files with 97 additions and 70 deletions

View File

@ -13,13 +13,13 @@
<span class="slash">/</span>
</header>
<main>
<div id="box">
{% include sidebar.html %}
<article id="content">
<main id="content">
{{ content }}
</article>
</main>
</main>
</div>
<!--{% include footer.html %}-->
</body>

View File

@ -11,13 +11,13 @@
<span class="slash">/</span> {{ page.title }}
</header>
<main>
<div id="box">
{% include sidebar.html %}
<article id="content">
<main id="content">
{{ content }}
</article>
</main>
</main>
</div>
<!--{% include footer.html %}-->
</body>

View File

@ -11,13 +11,13 @@
<span class="slash">/</span> {{ page.title }}
</header>
<main>
<div id="box">
{% include sidebar.html %}
<article id="content">
<main id="content">
{{ content }}
</article>
</main>
</main>
</div>
<!--{% include footer.html %}-->
</body>

View File

@ -10,16 +10,17 @@
<a href="/" id="name"><b>Andrew Cassidy</b></a>
<span class="slash">/</span>
<a href="/Blog" class="dir">Blog</a>
<span class="slash">/</span> {{ page.title }}
<span class="slash">/</span>
</header>
<main>
<div id="box">
{% include sidebar.html %}
<article id="content">
<main id="content">
<h1> {{page.title}} </h1>
{{ content }}
</article>
</main>
</main>
</div>
<!--{% include footer.html %}-->
</body>