Skip to content

Commit 4c2fe83

Browse files
authored
Merge pull request #571 from OpenCOMPES/logo
add logo to README and docs
2 parents 840a8d9 + a6e73c0 commit 4c2fe83

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<h1 align="center">
2+
<img src="docs/_static/logo.png" width="200">
3+
</h1><br>
4+
15
[![Documentation Status](https://github.com/OpenCOMPES/sed/actions/workflows/documentation.yml/badge.svg)](https://opencompes.github.io/docs/sed/stable/)
26
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
37
![](https://github.com/OpenCOMPES/sed/actions/workflows/linting.yml/badge.svg?branch=main)

docs/_static/favicon.ico

15 KB
Binary file not shown.

docs/_static/logo.png

72.6 KB
Loading

docs/conf.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
import tomlkit
1515

16-
from sed import __version__
16+
from sed import __version__ # type: ignore[attr-defined]
1717

1818
sys.path.insert(0, os.path.abspath(".."))
1919

@@ -105,6 +105,9 @@ def _get_project_meta():
105105
#
106106
html_theme = "pydata_sphinx_theme"
107107

108+
html_logo = "_static/logo.png"
109+
html_favicon = "_static/favicon.ico"
110+
108111
html_theme_options = {
109112
"github_url": "https://github.com/OpenCOMPES/sed",
110113
"primary_sidebar_end": ["indices.html"],

0 commit comments

Comments
 (0)