make CC licenced, CSS overhaul
* re-add footer to the wite * add CC licensing and appropriate licensing information to the footer * refactor css so footer can sit below the "page"
This commit is contained in:
@ -7,20 +7,25 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
||||
<span class="slash">/</span> {{ page.title }}
|
||||
<span class="slash">/</span>
|
||||
</header>
|
||||
<div id="page">
|
||||
<header>
|
||||
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
||||
<span class="slash">/</span> {{ page.title }}
|
||||
<span class="slash">/</span>
|
||||
</header>
|
||||
|
||||
<div id="box">
|
||||
{% include sidebar.html %}
|
||||
<div id="box">
|
||||
{% include sidebar.html %}
|
||||
|
||||
<main id="content">
|
||||
{{ content }}
|
||||
</main>
|
||||
<main id="content">
|
||||
{{ content }}
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
<!--{% include footer.html %}-->
|
||||
|
||||
<footer>
|
||||
{% include footer.html %}
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -7,19 +7,23 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
||||
<span class="slash">/</span> {{ page.title }}
|
||||
</header>
|
||||
<div id="page">
|
||||
<header>
|
||||
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
||||
<span class="slash">/</span> {{ page.title }}
|
||||
</header>
|
||||
|
||||
<div id="box">
|
||||
{% include sidebar.html %}
|
||||
<div id="box">
|
||||
{% include sidebar.html %}
|
||||
|
||||
<main id="content">
|
||||
{{ content }}
|
||||
</main>
|
||||
<main id="content">
|
||||
{{ content }}
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
<!--{% include footer.html %}-->
|
||||
<footer>
|
||||
{% include footer.html %}
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -7,19 +7,24 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
||||
<span class="slash">/</span> {{ page.title }}
|
||||
</header>
|
||||
<div id="page">
|
||||
<header>
|
||||
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
||||
<span class="slash">/</span> {{ page.title }}
|
||||
</header>
|
||||
|
||||
<div id="box">
|
||||
{% include sidebar.html %}
|
||||
<div id="box">
|
||||
{% include sidebar.html %}
|
||||
|
||||
<main id="content">
|
||||
{{ content }}
|
||||
</main>
|
||||
<main id="content">
|
||||
{{ content }}
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
<!--{% include footer.html %}-->
|
||||
|
||||
<footer>
|
||||
{% include footer.html %}
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -16,25 +16,30 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
||||
<span class="slash">/</span>
|
||||
<a href="/Blog" class="dir">Blog</a>
|
||||
<span class="slash">/</span>
|
||||
</header>
|
||||
<div id="page">
|
||||
<header>
|
||||
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
||||
<span class="slash">/</span>
|
||||
<a href="/Blog" class="dir">Blog</a>
|
||||
<span class="slash">/</span>
|
||||
</header>
|
||||
|
||||
<div id="box">
|
||||
{% include sidebar.html %}
|
||||
<div id="box">
|
||||
{% include sidebar.html %}
|
||||
|
||||
<main id="content">
|
||||
<h1 class="post-title">{{ page.title }}</h1>
|
||||
<main id="content">
|
||||
<h1 class="post-title">{{ page.title }}</h1>
|
||||
|
||||
{% include post-info.html tags = page.tags date=page.date%}
|
||||
{% include post-info.html tags = page.tags date=page.date%}
|
||||
|
||||
{{ content }}
|
||||
</main>
|
||||
{{ content }}
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
<!--{% include footer.html %}-->
|
||||
|
||||
<footer>
|
||||
{% include footer.html %}
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user