Skip to content

Commit

Permalink
feat(docs): use grid cards for sponsors
Browse files Browse the repository at this point in the history
  • Loading branch information
florentfougeres committed Oct 18, 2024
1 parent 07a6dab commit 34629fc
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 29 deletions.
26 changes: 0 additions & 26 deletions SPONSORS.md

This file was deleted.

Binary file modified website/__pycache__/macros.cpython-312.pyc
Binary file not shown.
66 changes: 65 additions & 1 deletion website/docs/sponsors.md
Original file line number Diff line number Diff line change
@@ -1 +1,65 @@
{{ include_file("../SPONSORS.md") }}
# Sponsors

We gratefully acknowledge the support of our sponsors. Their contributions help make this project possible.
SFCGAL are sponsored by the following organizations:

<!-- markdownlint-disable MD033 -->
<div class="grid cards" markdown>

- ![Oslandia](./assets/img/sponsors/oslandia.png){height=200px}

----

Conception and initial development. Hosts core developer and main maintainers.

[➜ Visit Oslandia](https://oslandia.com)

- ![Dalibo](./assets/img/sponsors/logo-dalibo.png){height=200px}

----

Support and contributions to the project.

[➜ Visit Dalibo](https://www.dalibo.com)

- ![BPI France](./assets/img/sponsors/bpi_france.png){height=200px} __BPI France__

----

Funded by BPI France as part of innovation financing.

[➜ Visit BPI France](https://www.bpifrance.com)

- ![France 2030](./assets/img/sponsors/france_2030.png){height=100px} __France 2030__

----

Funded by the French government as part of France 2030.

[➜ Learn more about France 2030](https://www.gouvernement.fr/les-priorites/france-2030)

- ![France Relance](./assets/img/sponsors/france_relance.png){height=200px} ![EU](./assets/img/sponsors/ue_next_generation.png){height=200px} __France Relance & EU Next Generation__

----

Funded by the European Union - Next Generation EU as part of the France Relance plan.

[➜ Learn more about France Relance](https://www.gouvernement.fr/le-plan-france-relance)

</div>
<!-- markdownlint-enable MD033 -->


If you wish to sponsor SFCGAL, you can contact us at [[email protected]](mailto:[email protected]).

## Contributors

The SFCGAL project would not be possible without the dedicated efforts of its contributors. All contributors are listed in [AUTHORS](./authors.md):

Thank you to all our contributors for your support and dedication to the project!

## Funding

The first SFCGAL releases were funded by the European Union (FEDER, related to the [e-PLU project](http://www.e-plu.fr)) and by Oslandia.

We are seeking additional funding to continue development. If interested, contact us at [[email protected]](mailto:[email protected]).
3 changes: 1 addition & 2 deletions website/macros.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ def include_file(filename: str) ->str:
"""
try:
with open(filename, "r", encoding="utf-8") as file:
content = file.read().replace("website/docs/", "")
content = content.replace("[AUTHORS](AUTHORS)", "[AUTHORS](./authors.md)")
content = file.read()
return content
except FileNotFoundError:
return f"File not found: {filename}"
Expand Down
1 change: 1 addition & 0 deletions website/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ extra_css:
markdown_extensions:
- attr_list
- admonition
- md_in_html

plugins:
- mkdocs-video
Expand Down

0 comments on commit 34629fc

Please sign in to comment.