Skip to content

Add footer #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
60 changes: 60 additions & 0 deletions footer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
% This defines the footer of the site, and is not parsed as a regular "page"
% We point to it with the following in `myst.yml`:
% site:
% parts:
% footer: footer.md

% Here we use `grid` to add a basic grid structure to the HTML,
% but the formatting column sizes are defined manually in css/footer.css
% see the `grid-template-columns` line.
:::::{grid} 3 3 5 5
:class: outer-grid col-screen

<!-- Project description -->

::::{div}

# Landing Pages

```{image} https://jupyterbook.org/en/stable/_images/logo-square.svg
:width: 50px
:align: left
```

This is a description of our project. And a [link to its homepage](https://github.com/jupyter-book/example-landing-pages).
::::

<!-- Spacer between project description and links columns -->

::::{div}
::::

<!-- Link columns -->

% This a _second_ grid embedded within the first one, to create nicer
% responsive design experience. This grid will have a single column on narrow screens,
% and fan out into three columns on wide screens. However, it always remains within
% its parent grid column.
::::{grid} 1 1 3 3

:::{div}

- [About](https://mystmd.org/overview/ecosystem)
- [Guide](https://mystmd.org/guide)
- [Sandbox](https://mystmd.org/sandbox)
:::

:::{div}

- A second column!
- With multiple entries
:::

:::{div}

- And what about a third
:::

::::

:::::
2 changes: 2 additions & 0 deletions myst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ site:
favicon: images/favicon.ico
logo: images/statistical-python-logo.svg
logo_text: Statistical Python
parts:
footer: footer.md