diff --git a/jimsite/assets.py b/jimsite/assets.py index 00644b8..5b65afc 100644 --- a/jimsite/assets.py +++ b/jimsite/assets.py @@ -38,7 +38,7 @@ def copy_assets(site: SiteConfig) -> None: # Construct the destination path analogous to the source path # but in the web root instead of the build cache. - destination = f'{site.web_root}/What the program does{a.lstrip("/")}' + destination = f'{site.web_root}/{a.lstrip("/")}' # Delete existing files. shutil.rmtree(destination, ignore_errors=True) diff --git a/jimsite/requirements.txt b/jimsite/requirements.txt index 10264cd..c4b3774 100644 --- a/jimsite/requirements.txt +++ b/jimsite/requirements.txt @@ -2,4 +2,5 @@ ipykernel markdown pyyaml rfeed -dotmap \ No newline at end of file +dotmap +pydantic \ No newline at end of file diff --git a/site/assets/css/theme.css b/site/assets/css/theme.css index 38ca3e1..260b911 100644 --- a/site/assets/css/theme.css +++ b/site/assets/css/theme.css @@ -205,3 +205,20 @@ span img.rss-icon{ float: right; } +blockquote { + border-color: var(--azure); + /* border-image: var(--silver) 1; */ + border-style: solid; + border-left-width: 0.25em; + padding: 0.25em 0 0.25em 1em; + padding-left: 1em; + margin-bottom: 1em; +} + +blockquote > p:last-of-type { + margin-bottom: 0; +} + +img { + width: 50vw; +} \ No newline at end of file