-
Notifications
You must be signed in to change notification settings - Fork 0
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 #6 from lsst-sqre/tickets/DM-37007
DM-37007: Implement a base styling of the metadata surrounding the content
- Loading branch information
Showing
54 changed files
with
2,609 additions
and
161 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,27 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "build", | ||
"group": "build", | ||
"problemMatcher": [], | ||
"label": "npm: build", | ||
"detail": "Build CSS & JS with webpack" | ||
}, | ||
{ | ||
"label": "Demo", | ||
"detail": "Build demo technote", | ||
"type": "shell", | ||
"command": "tox -e demo", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Preview", | ||
"detail": "Build CSS, JS and demo technote", | ||
"dependsOn": ["npm: build", "Demo"], | ||
"dependsOrder": "sequence", | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include src/technote/theme/static/styles/technote.css | ||
include src/technote/theme/static/styles/technote.css.map | ||
include src/technote/theme/static/scripts/technote.js | ||
prune src/assets |
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 |
---|---|---|
@@ -1 +1,9 @@ | ||
from technote.sphinxconf import * # noqa: F401 F403 | ||
|
||
html_static_path = ["_static"] | ||
|
||
html_theme_options = { | ||
"light_logo": "technote-logo-light.svg", | ||
"dark_logo": "technote-logo-dark.svg", | ||
"logo_link_url": "https://technote.lsst.io", | ||
} |
Oops, something went wrong.