diff --git a/assets/css/simple.css b/assets/css/simple.css index 363126d..70e35a6 100644 --- a/assets/css/simple.css +++ b/assets/css/simple.css @@ -19,6 +19,11 @@ gap: 1em; } +.site-logo { + border: outset var(--light-warm-gray); + background-color: var(--light-warm-gray); +} + .site-title { text-align: center; border: outset var(--light-warm-gray); diff --git a/lib/PostText/Controller/Thread.pm b/lib/PostText/Controller/Thread.pm index 00212ea..0eaae18 100644 --- a/lib/PostText/Controller/Thread.pm +++ b/lib/PostText/Controller/Thread.pm @@ -91,7 +91,7 @@ sub feed($self) { my $chan_link = $self->url_for(threads_list => {list_page => 1} )->to_abs; my $rss_link = $self->url_for(threads_feed => {format => 'rss'})->to_abs; my $rss_title = 'Post::Text'; - my $rss_image = $self->url_for('/images/logo_small.png')->to_abs; + my $rss_image = $self->url_for('/images/icon_small.png')->to_abs; $rss->add_module( prefix => 'atom', diff --git a/public/images/logo_small.png b/public/images/icon_small.png similarity index 100% rename from public/images/logo_small.png rename to public/images/icon_small.png