Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
cd544e3
POC: Add PyGMT logo to README
michaelgrund Mar 11, 2025
ff8c3cb
Update conf.py
michaelgrund Mar 14, 2025
59313cc
Merge branch 'main' into add-pygmt-logo
michaelgrund Mar 14, 2025
56332db
replace favicon image
michaelgrund Mar 17, 2025
33a05d5
Add new favicon image
michaelgrund Mar 17, 2025
adbcff1
Update conf.py
michaelgrund Mar 17, 2025
1ebc5cf
Delete doc/_static/favicon_pygmt.png
michaelgrund Mar 17, 2025
3715dde
Merge branch 'main' into add-pygmt-logo
michaelgrund Mar 17, 2025
4697601
Update index.md
michaelgrund Mar 17, 2025
42b367a
adjust image width in banner
michaelgrund Mar 17, 2025
1dd3088
Crop favicon
michaelgrund Mar 17, 2025
582aa28
All logo png
michaelgrund Mar 17, 2025
9da6777
Update conf.py
michaelgrund Mar 17, 2025
b40090d
Resize favicon to 100x100 px
michaelgrund Mar 17, 2025
5714022
Update doc/index.md
michaelgrund Mar 17, 2025
5189145
Remove PyGMT since logo is used
michaelgrund Mar 17, 2025
11e9f27
Update conf.py
michaelgrund Mar 17, 2025
cbd7ac0
Update doc/conf.py
michaelgrund Mar 17, 2025
45ec1d6
Show logo in the sidebar
seisman Mar 19, 2025
ef473b9
Merge branch 'main' into add-pygmt-logo
michaelgrund Mar 19, 2025
12bc658
Merge branch 'main' into add-pygmt-logo
seisman Apr 8, 2025
09328fa
Merge branch 'main' into add-pygmt-logo
seisman May 8, 2026
4b94adb
Merge branch 'main' into add-pygmt-logo
seisman May 19, 2026
16cc15e
Add pygmtlogo.png
seisman May 19, 2026
eaed056
Add favicon
seisman May 19, 2026
ecd3151
Revert changes in doc/_templates/layout.html
seisman May 19, 2026
750f935
Update the PyGMT logo in README
seisman May 19, 2026
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
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# PyGMT

> A Python interface for the Generic Mapping Tools
<img alt="PyGMT - A Python interface for the Generic Mapping Tools" class="right" style="width: 65%" src="doc/_static/pygmtlogo.png"/>

[Documentation (development version)](https://www.pygmt.org/dev) | [Contact](https://forum.generic-mapping-tools.org) | [TryOnline](https://github.com/GenericMappingTools/try-gmt)

Expand Down
Binary file modified doc/_static/favicon.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/_static/pygmtlogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,11 +193,13 @@

# Options for HTML output.
html_theme = "sphinx_rtd_theme"
html_theme_options = {}
html_theme_options = {
"logo_only": True,
}
html_title = project
Comment thread
michaelgrund marked this conversation as resolved.
html_short_title = project
html_baseurl = f"{doc_url}/dev/" if isdev else f"{doc_url}/latest/"
html_logo = ""
html_logo = "_static/pygmtlogo.png"
html_favicon = "_static/favicon.png"
html_css_files = ["style.css"]
html_static_path = ["_static"]
Expand Down
2 changes: 1 addition & 1 deletion doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
```

<div class="banner">
<h1>PyGMT<h1>
<img src="_static/pygmtlogo.png" alt="PyGMT Logo" style="width: 600px; height: auto;">
<h2>
A Python interface for the
<a href="https://www.generic-mapping-tools.org/">Generic Mapping Tools</a>
Expand Down