From 200995ccc238049fb93ce97455935f0848b5666f Mon Sep 17 00:00:00 2001
From: Eric Wong <e@80x24.org>
Date: Tue, 1 Sep 2015 20:33:23 +0000
Subject: [PATCH] feed: extra newline after nav footer if list footer exists

It makes sense to distinguish the two a little.
---
 lib/PublicInbox/Feed.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/PublicInbox/Feed.pm b/lib/PublicInbox/Feed.pm
index 96158802..8fc65fb5 100644
--- a/lib/PublicInbox/Feed.pm
+++ b/lib/PublicInbox/Feed.pm
@@ -158,7 +158,7 @@ sub emit_html_index {
 	my $footer = nav_footer($ctx->{cgi}, $last, $feed_opts, $state);
 	if ($footer) {
 		my $list_footer = $ctx->{footer};
-		$footer .= "\n" . $list_footer if $list_footer;
+		$footer .= "\n\n" . $list_footer if $list_footer;
 		$footer = "<hr /><pre>$footer</pre>";
 	}
 	$fh->write(dump_topics($topics)) if $topics;
-- 
2.51.0