George S. Baugh 5 years ago
parent
commit
dc4747db27
2 changed files with 5 additions and 5 deletions
  1. 1 1
      www/styles/screen.css
  2. 4 4
      www/templates/posts.tx

+ 1 - 1
www/styles/screen.css

@@ -205,7 +205,7 @@ img.titlebar {
  height: 1.5em;
  float: left;
 }
-p.title {
+.title {
  padding-top: 0px;
  margin-top: 0px;
  font-weight: bold;

+ 4 - 4
www/templates/posts.tx

@@ -1,9 +1,10 @@
-<p class="title">
+<span class="title">
 : if ( $rss ) {
 <a title="RSS" class="rss" href="<: $route :>?format=rss"></a>
 <: $category :>:
 : }
-</p>
+</span>
+<hr class="divider" />
 : for $posts -> $post {
     :if ( $tiled ) {
         <a href="<: $route :>/<: $post.id :>" class="tile">
@@ -12,7 +13,6 @@
         </a>
     : } else {
         <div class="post">
-            <hr class="divider">
             <h3 class='blogtitles'>
                 <a href='/posts/<: $post.id :>'><: $post.title :></a>
                 <a class="undecorated" href='<: $post.href :>'>🔗</a>
@@ -55,9 +55,9 @@
                 });
             </script>
         </div>
+        <hr class="divider" />
     : }
 : }
 : if ( $rss ) {
-<hr />
 : include "paginator.tx";
 : }