Commit 74dd65e2 authored by Dmitry Shelepnev's avatar Dmitry Shelepnev
Browse files

Add favicon to site

parent 0cf6dea3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ AUTH = getattr(settings, "SOPDS_AUTH", False)

TITLE = getattr(settings, "SOPDS_TITLE", "SimpleOPDS")
SUBTITLE = getattr(settings, "SOPDS_SUBTITLE", "SimpleOPDS Catalog by www.sopds.ru. Version %s."%sopds_version)
ICON = getattr(settings, "SOPDS_ICON", "http://www.sopds.ru/favicon.ico")
ICON = getattr(settings, "SOPDS_ICON", "/static/images/favicon.ico")

LOGFILE = getattr(settings, "SOPDS_LOGFILE", "scan.log")
loglevel = getattr(settings, "SOPDS_LOGLEVEL", "info")
+1 −0
Original line number Diff line number Diff line
@@ -44,5 +44,6 @@ urlpatterns = [
    
    url(r'^download/(?P<book_id>[0-9]+)/(?P<zip>[0-1])/$',dl.Download, name='download'),
    url(r'^cover/(?P<book_id>[0-9]+)/$',dl.Cover, name='cover'),
        
    url(r'^',feeds.MainFeed(), name='main'),
]
Loading