forked from FEniCS/fiat
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from firedrakeproject/connorjward/add-finat-gem
Absorb FInAT and GEM into FIAT
- Loading branch information
Showing
188 changed files
with
16,551 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: github pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build_docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: 3.12 | ||
- name: Install | ||
run: | | ||
python -m pip install .[doc] | ||
- name: Build docs | ||
run: | | ||
make -C docs html | ||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./docs/build/html | ||
publish_branch: gh-pages | ||
enable_jekyll: false | ||
allow_empty_commit: false | ||
user_name: 'github-actions[bot]' | ||
user_email: 'github-actions[bot]@users.noreply.github.com' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
This is the Sphinx theme for the FInAT web page | ||
It was originally based on the Firedrake web page, | ||
which was based on the dolfin-adjoint theme, | ||
which was in turn based oh the FEniCS project theme. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{% extends "basic/layout.html" %} | ||
|
||
{% block extrahead %} | ||
<!--[if lte IE 6]> | ||
<link rel="stylesheet" href="{{ pathto('_static/ie6.css', 1) }}" type="text/css" media="screen" charset="utf-8" /> | ||
<![endif]--> | ||
|
||
<link rel="stylesheet" href="{{ pathto('_static/featured.css', 1) }}"> | ||
|
||
{% if theme_favicon %} | ||
<link rel="shortcut icon" href="{{ pathto('_static/'+theme_favicon, 1) }}" /> | ||
{% endif %} | ||
{% endblock %} | ||
|
||
{# override upper relbar to show our navigation menu #} | ||
{% block relbar1 %} | ||
<div class="wrapper"> | ||
<a href="{{ pathto('index.html', 1) }}"><img src="{{ pathto('_static/%s.%s' % ('banner', 'png'), 1) }}" width="900px" alt="FInAT Project Banner" /></a> | ||
<div id="access"> | ||
<div class="menu"> | ||
<ul> | ||
<li class="page_item"><a href="https://github.com/FInAT/finat" title="GitHub">GitHub</a></li> | ||
<!-- <li class="page_item"><a href="{{ pathto('documentation.html', 1) }}" title="Documentation for FInAT">Documentation</a></li> | ||
<li class="page_item"><a href="{{ pathto('download.html', 1) }}" title="Obtain the FInAT code">Download</a></li> | ||
<li class="page_item"><a href="{{ pathto('%s.%s' % ('team', 'html'), 1) }}" title="The guilty parties">Team</a></li> | ||
<li class="page_item"><a href="{{ pathto('publications.html', 1) }}" title="Publications">Publications</a></li> | ||
<li class="page_item"><a href="{{ pathto('funding.html', 1) }}" title="Our financial supporters">Funding</a></li> | ||
<li class="page_item"><a href="{{ pathto('contact.html', 1) }}" title="Getting in touch">Contact</a></li> | ||
<li class="page_item"><a href="http://buildbot-ocean.ese.ic.ac.uk:8080/builders/FInAT-trunk" title="Buildbot">Buildbot</a></li>--> | ||
</ul> | ||
</div><!-- .menu --> | ||
</div><!-- #access --> | ||
</div><!-- #wrapper --> | ||
{% endblock %} | ||
|
||
{# do not display lower relbar #} | ||
{% block relbar2 %}{% endblock %} | ||
|
||
{# do not display sidebars #} | ||
{% block sidebar1 %}{% endblock %} | ||
{% block sidebar2 %}{% endblock %} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.