diff --git a/.gitignore b/.gitignore index 735ba07..82eb2e8 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ output pelican-hss pelican-themes *.pyc +venv/ diff --git a/Makefile b/Makefile index 0d8d64c..3562896 100644 --- a/Makefile +++ b/Makefile @@ -68,6 +68,7 @@ devserver: ifdef PORT $(PELICAN) -lr $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) -p $(PORT) else + @echo 'Default port is 8000' $(PELICAN) -lr $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) endif diff --git a/pelican-hss/static/images/logo.png b/pelican-hss/static/images/logo.png new file mode 100644 index 0000000..a9eb6b8 Binary files /dev/null and b/pelican-hss/static/images/logo.png differ diff --git a/pelican-hss/static/images/pandas_favicon.ico b/pelican-hss/static/images/pandas_favicon.ico new file mode 100644 index 0000000..0af2443 Binary files /dev/null and b/pelican-hss/static/images/pandas_favicon.ico differ diff --git a/pelican-hss/static/images/pandas_logo_mark.svg b/pelican-hss/static/images/pandas_logo_mark.svg new file mode 100644 index 0000000..1451f57 --- /dev/null +++ b/pelican-hss/static/images/pandas_logo_mark.svg @@ -0,0 +1,111 @@ + + + + + + image/svg+xml + + + + + + + + + Artboard 61 + + + + + + + + + diff --git a/pelican-hss/static/images/pandas_primary_logo.svg b/pelican-hss/static/images/pandas_primary_logo.svg new file mode 100644 index 0000000..a7af4e4 --- /dev/null +++ b/pelican-hss/static/images/pandas_primary_logo.svg @@ -0,0 +1 @@ +Artboard 63 \ No newline at end of file diff --git a/pelicanconf.py b/pelicanconf.py index bd30a29..44e785c 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -39,3 +39,6 @@ THEME = "pelican-hss" STATIC_PATHS = ['extra', 'images'] + +USER_LOGO_URL = 'https://pandas.pydata.org/static/img/pandas.svg' +FAVICON = 'theme/images/pandas_logo_mark.svg' \ No newline at end of file