From ed3b55550b005e50c7d43769764ba665ddf4a409 Mon Sep 17 00:00:00 2001 From: shashankmehta Date: Wed, 10 Oct 2012 23:09:31 +0530 Subject: [PATCH] Shifted post meta data to right side --- sass/custom/_styles.scss | 5 +++++ source/_includes/article.html | 15 +++++++-------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/sass/custom/_styles.scss b/sass/custom/_styles.scss index 91ffccc..da6d142 100644 --- a/sass/custom/_styles.scss +++ b/sass/custom/_styles.scss @@ -1,2 +1,7 @@ // This File is imported last, and will override other styles in the cascade // Add styles here to make changes without digging in too much +.post .meta { + position: relative; + float: right; + top: 0px; +} \ No newline at end of file diff --git a/source/_includes/article.html b/source/_includes/article.html index 1e1c835..15cb256 100644 --- a/source/_includes/article.html +++ b/source/_includes/article.html @@ -1,4 +1,11 @@ {% if index %} +
+
{% include post/date.html %}{{ time }}
+
{% include post/categories.html %}
+ {% if site.disqus_short_name and site.disqus_show_comment_count == true %} + Comments + {% endif %} +

{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}

{{ content | excerpt }} @@ -9,11 +16,3 @@

{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}

{{ content }}
{% endif %} - -
-
{% include post/date.html %}{{ time }}
-
{% include post/categories.html %}
- {% if site.disqus_short_name and site.disqus_show_comment_count == true %} - Comments - {% endif %} -
\ No newline at end of file