-
-
Notifications
You must be signed in to change notification settings - Fork 106
Rewrite to a sphinx project and use unified theme #698
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
Open
Cadair
wants to merge
21
commits into
astropy:main
Choose a base branch
from
Cadair:unified-theme-rewrite
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
8d34a24
TMP: Homepage
Cadair 9db2a26
TMP: Acknoledge
Cadair 850f3e6
TMP: Add in affiliated
Cadair a73bb2f
TMP: Add CoC Pages
Cadair a737703
TMP: Announcement Banner
Cadair 1e1f89c
TMP: About
Cadair d6e4fb6
TMP: help
Cadair dce9fc5
TMP: history
Cadair 2f9da79
TMP: team
Cadair 8b15918
TMP: Contributing
Cadair 7f61aa4
TMP: 10k citations
Cadair 26ff776
TMP: announcements
Cadair 066f8af
add back Python helpers
Cadair 6c40ce8
Some other cleanup
Cadair 47c1761
Attempt to fix circlci
Cadair 073c927
Update .gitignore
Cadair e7e55f9
Use theme in new home
Cadair edab2ba
Remove now redundant subs
Cadair f18d04b
fix artifact path
Cadair c57fc94
Drop circleCI and use GitHub actions for checks
Cadair d108dcb
Fix many linkcheck errors, but not them all
Cadair File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,27 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - "main" | ||
| pull_request: | ||
| # Allow manual runs through the web UI | ||
| workflow_dispatch: | ||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| permissions: {} | ||
|
|
||
| jobs: | ||
| core: | ||
| uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v2 | ||
| with: | ||
| submodules: true | ||
| libraries: | | ||
| apt: | ||
| - pandoc | ||
| envs: | | ||
| - linux: build_site | ||
| - linux: linkcheck |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,2 +1,5 @@ | ||
| *.py[co] | ||
| *.DS_STORE | ||
| _build/ | ||
| credits.rst | ||
|
|
This file contains hidden or 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 hidden or 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,73 @@ | ||
| .bd-sidebar-secondary { | ||
| background-color: transparent; | ||
| } | ||
|
|
||
| a.sd-btn { | ||
| border: none; | ||
| } | ||
|
|
||
| a.sd-btn { | ||
| color: var(--sst-lightest-color); | ||
| background-image: linear-gradient(var(--sst-accent-color-muted), var(--sst-accent-color-bright)); | ||
| } | ||
|
|
||
| a.sd-btn:hover, | ||
| a.sd-btn:visited:hover { | ||
| color: var(--sst-dark-color); | ||
| background: rgba(255, 255, 255, 0.3); | ||
| background-blend-mode: lighten; | ||
| background-image: linear-gradient(var(--sst-accent-color-muted), var(--sst-accent-color-bright)); | ||
| text-decoration: none; | ||
| } | ||
|
|
||
| table{ | ||
| margin: 20px 0px; | ||
| word-break:overflow-wrap; | ||
| } | ||
|
|
||
| .package-table { | ||
| border: 0; | ||
| } | ||
|
|
||
| table.package-table thead{ | ||
| text-align: left; | ||
| font-weight: bold; | ||
| border-bottom: 1px solid rgba(128,128,128,0.2); | ||
| } | ||
|
|
||
| table.package-table td{ | ||
| padding:5px 5px; | ||
| font-size: 100%; | ||
| line-height: 1.3em; | ||
| border: 0; | ||
| } | ||
|
|
||
| table.package-table td.first-package-row { | ||
| padding:15px 5px 5px 5px; | ||
| font-weight: bold; | ||
| min-width: 130px; | ||
| } | ||
|
|
||
| .package-table td ~ td, .table td ~ th, .table th ~ td, .table th ~ th { | ||
| border-left: 0; | ||
| } | ||
|
|
||
| .package-table tbody tr:nth-child(2n+1), | ||
| .package-table tbody tr { | ||
| background-color: transparent !important; | ||
| } | ||
|
|
||
| /* Create a border after every 3rd row to visually separate packages */ | ||
| .forth-row-sep tbody tr:nth-child(4n+5) { | ||
| border-top: 1px var(--bs-border-color) solid; | ||
| } | ||
| .third-row-sep tbody tr:nth-child(3n+4) { | ||
| border-top: 1px var(--bs-border-color) solid; | ||
| } | ||
|
|
||
| .announce-logo { | ||
| display: flex; | ||
| justify-content: center; | ||
| align-items: center; | ||
| flex-direction: column; | ||
| } |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
This file contains hidden or 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
File renamed without changes.
File renamed without changes.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not really important here, since this is just a comment anyway, but I think most modern browsers now refuse to load any local file for security - for testing locally you'll a local web server running for all or most of them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah this comment is pretty old 😆
I'd like to purge this entire file of js if I have the time.