Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

arj-branch: fix: included pandas logo on favicon and footer #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ output
pelican-hss
pelican-themes
*.pyc
venv/
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Binary file added pelican-hss/static/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pelican-hss/static/images/pandas_favicon.ico
Binary file not shown.
111 changes: 111 additions & 0 deletions pelican-hss/static/images/pandas_logo_mark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions pelican-hss/static/images/pandas_primary_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions pelicanconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'