Commit b4498668 authored by Murukesh Mohanan's avatar Murukesh Mohanan

fixes for relative url

parent 4b83c497
...@@ -5,7 +5,7 @@ pagestyle: posts ...@@ -5,7 +5,7 @@ pagestyle: posts
<header class="section post-title"> <header class="section post-title">
<h1> <h1>
<a href="{{ page.url }}"> <a href="{{ site.root_url }}{{ page.url }}">
{{ page.title }} {{ page.title }}
</a> </a>
<time datetime="{{ page.date | date_to_xmlschema }}" class="post-date"> <time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">
......
...@@ -199,7 +199,7 @@ All told: ...@@ -199,7 +199,7 @@ All told:
Footnote: Footnote:
This is my first blog post using [Jekyll](http://jekyllrb.com/). Writing it, I 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 [Unix.SE]: http://unix.stackexchange.com
[Vim.SE]: http://vi.stackexchange.com [Vim.SE]: http://vi.stackexchange.com
......
...@@ -8,7 +8,7 @@ pagestyle: posts ...@@ -8,7 +8,7 @@ pagestyle: posts
<section markdown="1"> <section markdown="1">
<header class="post-title"> <header class="post-title">
<h1> <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> <time datetime="{{ post.date | date_to_xmlschema }}" class="post-date"> {{ post.date | date: "%B %e, %Y" }}</time>
</h1> </h1>
</header> </header>
......
...@@ -37,7 +37,8 @@ img { ...@@ -37,7 +37,8 @@ img {
@media screen and (orientation:landscape) { @media screen and (orientation:landscape) {
.post-date { .post-date {
float: right; 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