Commit b4498668 authored by Murukesh Mohanan's avatar Murukesh Mohanan

fixes for relative url

parent 4b83c497
......@@ -5,7 +5,7 @@ pagestyle: posts
<header class="section post-title">
<h1>
<a href="{{ page.url }}">
<a href="{{ site.root_url }}{{ page.url }}">
{{ page.title }}
</a>
<time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">
......
......@@ -199,7 +199,7 @@ All told:
Footnote:
This is my first blog post using [Jekyll](http://jekyllrb.com/). Writing it, I
have learned quiet a bit, which I will write about in another post soon.
have learned quite a bit, which I will write about in another post soon.
[Unix.SE]: http://unix.stackexchange.com
[Vim.SE]: http://vi.stackexchange.com
......
......@@ -8,7 +8,7 @@ pagestyle: posts
<section markdown="1">
<header class="post-title">
<h1>
<a href="{{ post.url }}#main">{{ post.title }}</a>
<a href="{{site.root_url}}{{ post.url }}#main">{{ post.title }}</a>
<time datetime="{{ post.date | date_to_xmlschema }}" class="post-date"> {{ post.date | date: "%B %e, %Y" }}</time>
</h1>
</header>
......
......@@ -37,7 +37,8 @@ img {
@media screen and (orientation:landscape) {
.post-date {
float: right;
border-right: solid 0.1em black;
border-left: solid 0.2em black;
padding-left: 0.5em;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment