Skip to content

Commit

Permalink
Merge pull request #14 from paulromano/add-logo
Browse files Browse the repository at this point in the history
Add logo in README and documentation
  • Loading branch information
nstauff authored Feb 23, 2022
2 parents ef02533 + 86473e2 commit bb1fe10
Show file tree
Hide file tree
Showing 5 changed files with 121 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# WATTS
# <img valign="middle" src="doc/source/_static/watts.svg" height="75" height="75" alt="WATTS logo"/> WATTS

[![License](https://img.shields.io/badge/license-MIT-green)](https://opensource.org/licenses/MIT)
[![GitHub Actions build status (Linux)](https://github.com/watts-dev/watts/workflows/CI/badge.svg?branch=development)](https://github.com/watts-dev/watts/actions?query=workflow%3ACI)
Expand Down
105 changes: 105 additions & 0 deletions doc/source/_static/watts.svg
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 doc/source/_static/watts_16x16.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 doc/source/_static/watts_32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,18 @@
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_logo = '_static/watts.svg'
html_theme_options = {
"favicons": [
{
"rel": "icon",
"sizes": "16x16",
"href": "watts_16x16.png",
},
{
"rel": "icon",
"sizes": "32x32",
"href": "watts_32x32.png",
},
]
}

0 comments on commit bb1fe10

Please sign in to comment.