Update #59 Time should appear below category on small screens. It should appear on right on normal screens.
@@ -579,9 +579,11 @@ div.recent-posts section a:hover {
text-decoration: none;
}
div.recent-posts time {
- display: inline;
font-size: inherit;
+div.recent-posts-time {
+ display: inline;
+}
@media (max-width: 767px) {
div.blog-archives h2 {
float: none;
@@ -591,9 +593,10 @@ div.recent-posts time {
padding-left: 0;
- display: block;
- text-align: left;
+ }
+ div.recent-posts-time {
+ display: block;
/* MailChimp */
@@ -57,7 +57,9 @@
<section>
posted in
<a href="{{ SITEURL }}/categories.html#{{ article.category.slug }}-ref">{{ article.category }}</a>
+ <div class="recent-posts-time">
<time pubdate="pubdate" datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>
+ </div>
</section>
</article>
{% endif %}