Skip to content

Commit

Permalink
Merge pull request #58 from asmacdo/link-check-live
Browse files Browse the repository at this point in the history
Check external links
  • Loading branch information
yarikoptic authored Nov 12, 2024
2 parents fd9492e + 0c3c677 commit 4b67705
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/check-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,17 @@ jobs:
run: |
pip install pelican linkchecker
- name: Build site
- name: Start server
run: |
make html
make serve &
echo $! > server.pid
sleep 1
- name: Check links
run: |
linkchecker -f .linkcheckerrc -t 1 output/
linkchecker --check-extern -f .linkcheckerrc -t 1 http://localhost:8000
- name: Stop Website Server
run: |
kill $(cat server.pid)
2 changes: 1 addition & 1 deletion content/pages/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ <h2>Nibotmi</h2>
grew up
to <a href="http://nipy.bic.berkeley.edu/waterfall">cover up a
wide variety of associated projects</a>
(e.g., <a href="http://nipy.org/dipy">Dipy</a>,
(e.g., <a href="https://dipy.org/">Dipy</a>,
<a href="http://nipy.org/nipype">Nipype</a>, and
our <a href="/projects#pymvpa_">PyMVPA</a>). Although it is
just an ad-hoc setup, it provides many project developers
Expand Down
2 changes: 1 addition & 1 deletion content/pages/whoweare.html
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ <h2>Collaborating projects</h2>
<a href="http://biosig.sourceforge.net"><img src="/theme/img/3rd/biosig_logo.png" alt="biosig" title="biosig"/></a>
<a href="https://brainlife.io/"><img src="/theme/img/3rd/brainlife_logo.png" alt="brainlife.io" title="brainlife.io"/></a>
<a href="http://briansimulator.org/"><img src="/theme/img/3rd/brian_logo.png" alt="Brian" title="Brian"/></a>
<a href="http://nipy.org/dipy/"><img src="/theme/img/3rd/dipy_logo.png" alt="Dipy" title="Dipy"/></a>
<a href="https://dipy.org/"><img src="/theme/img/3rd/dipy_logo.png" alt="Dipy" title="Dipy"/></a>
<a href="http://www.gnu.org/software/freeipmi/"><img src="/theme/img/3rd/freeipmi_logo.png" alt="FreeIPMI" title="FreeIPMI"/></a>
<a href="http://openkinect.org/wiki/Main_Page"><img src="/theme/img/3rd/freenect_logo.png" alt="Freenect" title="Freenect"/></a>
<a href="https://surfer.nmr.mgh.harvard.edu/fswiki"><img src="/theme/img/3rd/freesurfer_logo.png" alt="FreeSurfer" title="FreeSurfer"/></a>
Expand Down
Binary file added theme/static/img/team/tor.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4b67705

Please sign in to comment.