diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 20062064f..0eedbc712 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -44,7 +44,7 @@ env: # ---------------------------------------------------------------------------- # Specify the deployment environment: staging or production HUGO_ENVIRONMENT: ${{ vars.HUGO_ENVIRONMENT || 'staging' }} - HUGO_VERSION: 0.144.2 + HUGO_VERSION: 0.155.3 jobs: # ---------------------------------------------------------------------------- diff --git a/static/css/prism.css b/assets/css/prism.css similarity index 100% rename from static/css/prism.css rename to assets/css/prism.css diff --git a/static/icons/logo.svg b/assets/icons/logo.svg similarity index 100% rename from static/icons/logo.svg rename to assets/icons/logo.svg diff --git a/static/js/prism.js b/assets/js/prism.js similarity index 100% rename from static/js/prism.js rename to assets/js/prism.js diff --git a/assets/js/search-text-fragment.js b/assets/js/search-text-fragment.js new file mode 100644 index 000000000..12c8bf3f9 --- /dev/null +++ b/assets/js/search-text-fragment.js @@ -0,0 +1,81 @@ +/** + * Text Fragment Enhancement for Google Programmable Search Engine + * + * This script intercepts clicks on GCSE search result links and adds + * text fragment highlighting (#:~:text=...) to navigate users directly + * to the relevant content on the target page. + * + * Text fragments are supported in Chrome 80+, Edge 80+, and other + * Chromium-based browsers. Firefox and Safari have limited support. + */ + +(function() { + 'use strict'; + + // Get the search query from the URL + function getSearchQuery() { + const params = new URLSearchParams(window.location.search); + return params.get('q') || ''; + } + + // Create a text fragment from search terms + function createTextFragment(query) { + if (!query) return ''; + + // Clean and encode the query for use in text fragment + // Use the first few significant words (avoid very long fragments) + const words = query.trim().split(/\s+/).slice(0, 5); + const fragment = words.join(' '); + + return '#:~:text=' + encodeURIComponent(fragment); + } + + // Check if browser supports text fragments + function supportsTextFragments() { + return 'fragmentDirective' in document || + // Chrome/Edge support detection + (navigator.userAgent.includes('Chrome') || navigator.userAgent.includes('Edg')); + } + + // Intercept clicks on GCSE result links + function setupLinkInterception() { + const query = getSearchQuery(); + if (!query || !supportsTextFragments()) return; + + const textFragment = createTextFragment(query); + + // Use event delegation since GCSE results are loaded dynamically + document.addEventListener('click', function(event) { + // Find if click was on a GCSE result link + const link = event.target.closest('.gs-title a, a.gs-title'); + if (!link) return; + + const href = link.getAttribute('href'); + if (!href) return; + + // Only modify links to our own site + const currentHost = window.location.hostname; + try { + const linkUrl = new URL(href, window.location.origin); + if (linkUrl.hostname !== currentHost) return; + + // Don't add fragment if one already exists + if (linkUrl.hash && !linkUrl.hash.startsWith('#:~:text=')) return; + + // Modify the link to include text fragment + event.preventDefault(); + const newUrl = href.split('#')[0] + textFragment; + window.location.href = newUrl; + } catch (e) { + // Invalid URL, let it proceed normally + } + }, true); + } + + // Initialize when DOM is ready + if (document.readyState === 'loading') { + document.addEventListener('DOMContentLoaded', setupLinkInterception); + } else { + setupLinkInterception(); + } +})(); diff --git a/static/js/vendor/dompurify/purify.min.js b/assets/js/vendor/dompurify/purify.min.js similarity index 100% rename from static/js/vendor/dompurify/purify.min.js rename to assets/js/vendor/dompurify/purify.min.js diff --git a/static/js/vendor/prettier/plugins/html.js b/assets/js/vendor/prettier/plugins/html.js similarity index 100% rename from static/js/vendor/prettier/plugins/html.js rename to assets/js/vendor/prettier/plugins/html.js diff --git a/static/js/vendor/prettier/standalone.js b/assets/js/vendor/prettier/standalone.js similarity index 100% rename from static/js/vendor/prettier/standalone.js rename to assets/js/vendor/prettier/standalone.js diff --git a/assets/scss/_styles_project.scss b/assets/scss/_styles_project.scss index ae5ffc2e1..50d08a58e 100644 --- a/assets/scss/_styles_project.scss +++ b/assets/scss/_styles_project.scss @@ -5,3 +5,77 @@ .td-page-meta { display: none; } + +.td-navbar .navbar-brand__name { + display: none; +} + +// Image gallery shortcode styles +.image-gallery { + overflow: auto; + margin-left: -1% !important; + + li { + float: left; + display: block; + margin: 0 0 1% 1%; + width: 19%; + + a { + text-align: center; + text-decoration: none !important; + color: #777; + + span { + display: block; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + padding: 3px 0; + } + + img { + width: 100%; + display: block; + } + } + } +} + +// Custom styles used by home page +.hero-content-column { + background-position: -2px 0; + background-repeat: no-repeat; + background-size: 26em 28em; + + .text-center { + h1, p { + text-shadow: 2px 3px 0 #333; + } + + .display-1, + .display-3 { + font-weight: 700; + } + } + + .top-summary { + background: rgba(0, 0, 0, 0.3); + padding: 7px; + border-radius: 11px; + } +} + +// Keep search visible on mobile, wrap to second row +@media (max-width: 991.98px) { + .td-navbar-container { + flex-wrap: wrap; + } + // Override Bootstrap d-none with higher specificity + nav.td-navbar .td-navbar__search.d-none.d-lg-block { + display: block !important; + width: 100%; + order: 99; + padding: 0.5rem 0; + } +} diff --git a/assets/scss/_variables_project.scss b/assets/scss/_variables_project.scss index 9e0e4eb79..3f773776a 100644 --- a/assets/scss/_variables_project.scss +++ b/assets/scss/_variables_project.scss @@ -1,3 +1,9 @@ -//$primary: #390040; -#$primary: #c80000; -$secondary: #A23B72; +$primary: #30638e; // rgb(48, 99, 142) +$secondary: #f08073; + +$td-enable-google-fonts: true; + +// Set the navbar background color to match the primary color +$td-navbar-bg-color: #30638e; + +// $enable-dark-mode: false; diff --git a/config/_default/hugo.yaml b/config/_default/hugo.yaml index 7db922ece..c36849e5a 100644 --- a/config/_default/hugo.yaml +++ b/config/_default/hugo.yaml @@ -26,7 +26,7 @@ canonifyURLs: false enableRobotsTXT: false # assetDir: Location where Hugo looks for assets -assetDir: static +#assetDir: static # Enable .GitInfo object for each page. This will give values to .Lastmod etc. enableGitInfo: true diff --git a/config/_default/module.yaml b/config/_default/module.yaml index d6c27e0b3..fc98f3889 100644 --- a/config/_default/module.yaml +++ b/config/_default/module.yaml @@ -3,7 +3,7 @@ # replacements = "github.com/google/docsy -> ../../docsy" hugoVersion: extended: true - min: "0.73.0" + min: "0.155.2" imports: - path: "github.com/google/docsy" disable: false diff --git a/config/_default/params.yaml b/config/_default/params.yaml index f6cc05f26..71838a717 100644 --- a/config/_default/params.yaml +++ b/config/_default/params.yaml @@ -41,17 +41,17 @@ copyright: from_year: 2024 license: MIT -# github information +# github information - disabled, only needed if feedback is enabled. # github_repo: url to repo of web site # github_branch: main branch of repo # github_subdir: unused by Interlisp.org # github_project_repo: added by Interlisp.org points to repo used # for issue reporting # -github_repo: https://github.com/interlisp/Interlisp.github.io -github_branch: main -github_subdir: -github_project_repo: https://github.com/interlisp/medley +#github_repo: https://github.com/interlisp/Interlisp.github.io +#github_branch: main +#github_subdir: +#github_project_repo: https://github.com/interlisp/medley # Google custom search engine configuration # gcs_engine_id: search engine @@ -136,24 +136,11 @@ taxonomy: # User Interface Configuration options # -# feedback: -# Adds a H2 section titled "Feedback" to the bottom of each doc. The responses -# are sent to Google Analytics as events. This feature depends -# on [services.googleAnalytics] and will be disabled if -# "services.googleAnalytics.id" is not set. -# -# If you want this feature, but occasionally need to remove the -# "Feedback" section from a single page, -# add "hide_feedback: true" to the page's front matter. -# enable: boolean Turn feedback -# yes: text to display with yes is selected -# no: text to display when no is selected - ui: + # Adds a H2 section titled "Feedback" to the bottom of each doc. The responses + # are sent to Google Analytics as events. feedback: - enable: true - 'yes': 'Glad to hear it! Please tell us how we can improve.' - 'no': 'Sorry to hear that. Please tell us how we can improve.' + enable: false # Adds a reading time to the top of each doc. # If you want this feature, but occasionally need to remove the Reading time from a single page, @@ -187,7 +174,8 @@ ui: ul_show: 3 -# Identify the custom css files -custom_css: - - "css/custom.css" + # Set the navbar to dark mode, This keeps the fonts white, which works better with the blue background. + navbar_theme: dark + # Set to false to disable dark mode menu + showLightDarkModeMenu: true diff --git a/content/en/_index.html b/content/en/_index.html deleted file mode 100644 index 87d260715..000000000 --- a/content/en/_index.html +++ /dev/null @@ -1,83 +0,0 @@ ---- -title: Medley Interlisp Project -aliases: - - /hugo ---- - -{{< blocks/cover title="The Medley Interlisp Project" subtitle="a retrofuturistic software system" image_anchor="smart" color="primary" height="min">}} -
- What did we leave behind on the path to developing today's computer systems? Could there be lessons for the future of computing hidden in the past? Enter the Medley software environment to explore these questions. -
-
- {{< blocks/link-down color="white" >}} -
-{{< /blocks/cover >}} - -{{< blocks/section color="white" >}} - -
-

The Interlisp Revival

-
- -
-

Welcome to the start of a new chapter in software preservation and computing. We're a group of researchers, software developers, and friends working to make the Medley Interlisp system available for use on modern computer systems.

- -

The Medley system was created at Xerox's Palo Alto Research Center (PARC). PARC was the cradle of the modern graphical user interface and its design thinking continued with the development of Medley Interlisp, an extensible graphical operating system with nearly limitless possibilities for customization. Whatever the task, using Medley you can design a custom workflow to help accomplish it.

- -

Interlisp had its beginnings as a DARPA sponsored Lisp environment for researchers. Interlisp was then ported and expanded into Interlisp-D, first released by Xerox and distributed commercially until its development tapered off in the 1990s. Now this classic software system is running again on your favorite operating system. The project is more than a trip down memory lane: our mission is to expand the scope of what Medley can do, fulfilling its promise of software tools limited only by the user's imagination. Dive in and explore the language, the tools, and the myriad applications, experiments, and playful creations that were crafted in and for Interlisp.

- -

The 2025 Medley Interlisp Annual Report describes our recent activities.

- -

We encourage you to read the Medley primer and try out the Interlisp environment. The primer, designed for modern users, assumes no prior knowledge of Lisp and will ease you into the system.

- -

Feeling confused by the jargon? Don't worry, we've got you covered. Check out our glossary to learn the terms associated with our project.

- -

Most software in this project is licensed under the terms of the MIT license.

- -
- -{{< /blocks/section >}} - -{{< blocks/section color="primary" type="row" >}} - -{{% blocks/feature icon="fas fa-feather" title="History of Interlisp" %}} -

- The history of Interlisp and Medley development, and applications written in - and for it. -

- -
- }}"> - History - -
- -{{% /blocks/feature %}} - -{{% blocks/feature icon="fas fa-globe-asia" title="The Project" %}} -

- Who we are, what we've done, our plans for the future, ways you can - get involved. -

-
- }}"> - Get Involved - -
- -{{% /blocks/feature %}} - -{{% blocks/feature icon="fas fa-medal" title="Try Medley" %}} -

- How to run Medley "in the cloud" (on our servers), install - it on popular platforms or build it for new ones. -

-
- }}"> - Running Medley - -
- -{{% /blocks/feature %}} - - {{< /blocks/section >}} diff --git a/content/en/_index.md b/content/en/_index.md new file mode 100644 index 000000000..a929f9b20 --- /dev/null +++ b/content/en/_index.md @@ -0,0 +1,76 @@ +--- +title: Medley Interlisp Project +aliases: + - /hugo +--- + +{{% blocks/cover title="The Medley Interlisp Project" subtitle="a retrofuturistic software system" image_anchor="smart" color="primary" height="min" %}} +
+ What did we leave behind on the path to developing today's computer systems? Could there be lessons for the future of computing hidden in the past? Enter the Medley software environment to explore these questions. +
+
+ {{% blocks/link-down color="white" %}} +
+{{% /blocks/cover %}} + +{{% blocks/section color="white" %}} + +# The Interlisp Revival + +The Medley system was created at Xerox's Palo Alto Research Center (PARC). PARC was the cradle of the modern graphical user interface and its design thinking continued with the development of Medley Interlisp, an extensible graphical operating system with nearly limitless possibilities for customization. Whatever the task, using Medley you can design a custom workflow to help accomplish it. + +Interlisp had its beginnings as a DARPA sponsored Lisp environment for researchers. Interlisp was then ported and expanded into Interlisp-D, first released by Xerox and distributed commercially until its development tapered off in the 1990s. Now this classic software system is running again on your favorite operating system. The project is more than a trip down memory lane: our mission is to expand the scope of what Medley can do, fulfilling its promise of software tools limited only by the user's imagination. Dive in and explore the language, the tools, and the myriad applications, experiments, and playful creations that were crafted in and for Interlisp. + +The [2025 Medley Interlisp Annual Report](project/status/2025medleyannualreport/) describes our recent activities. + +We encourage you to read the [Medley primer](https://primer.interlisp.org) and try out the Interlisp environment. The primer, designed for modern users, assumes no prior knowledge of Lisp and will ease you into the system. + +Feeling confused by the jargon? Don't worry, we've got you covered. [Check out our glossary](history/glossary/) to learn the terms associated with our project. + +Most software in this project is licensed under the terms of the [MIT license](https://github.com/Interlisp/medley/blob/master/LICENSE). + + +{{% /blocks/section %}} + +{{% blocks/section color="primary" type="row" %}} + +{{% blocks/feature icon="fas fa-feather" title="History of Interlisp" %}} +

+ The history of Interlisp and Medley development, and applications written in + and for it. +

+ +
+ }}"> + History + +
+ +{{% /blocks/feature %}} + +{{% blocks/feature icon="fas fa-globe-asia" title="The Project" %}} +

+ Who we are, what we've done, our plans for the future, ways you can + get involved. +

+
+ }}"> + Get Involved + +
+ +{{% /blocks/feature %}} + +{{% blocks/feature icon="fas fa-medal" title="Try Medley" %}} +How to run Medley "in the cloud" (on our servers), install +it on popular platforms or build it for new ones. + +
+ }}"> + Running Medley + +
+ +{{% /blocks/feature %}} + + {{% /blocks/section %}} diff --git a/content/en/history/bibliography/_index.md b/content/en/history/bibliography/_index.md index af682331c..a4ad1df13 100644 --- a/content/en/history/bibliography/_index.md +++ b/content/en/history/bibliography/_index.md @@ -9,4 +9,4 @@ aliases: - /bibliography/ --- -(This bibliography is kept in sync with our [Zotero](https://www.zotero.org/) collection [Library](https://www.zotero.org/groups/2914042/interlisp/library). +We generate this from our [Zotero collection library](https://www.zotero.org/groups/2914042/interlisp/library). diff --git a/content/en/history/in-memoriam.md b/content/en/history/in-memoriam.md index 4ea242f71..eb96274ef 100644 --- a/content/en/history/in-memoriam.md +++ b/content/en/history/in-memoriam.md @@ -3,11 +3,11 @@ title: In Memoriam weight: 100 type: docs --- -Some of the key contributors to Interlisp who are no longer with us. This page is to honor and appreciate them for the contributions they made. +Some of the key contributors to Interlisp are no longer with us. This page is to honor and appreciate them for the contributions they made. -#### [Warren Teitelman](https://en.wikipedia.org/wiki/Warren_Teitelman) ([Obituary](http://warrenteitelman.com)) +#### [Warren Teitelman](https://en.wikipedia.org/wiki/Warren_Teitelman) ([Obituary](https://web.archive.org/web/20250317210326/http://warrenteitelman.com/)) -#### [Danny Bobrow](https://en.wikipedia.org/wiki/Daniel_G._Bobrow) ([Obituary](https://www.paloaltoonline.com/obituaries/memorials/daniel-danny-g-bobrow-phd?o=4957)) +#### [Danny Bobrow](https://en.wikipedia.org/wiki/Daniel_G._Bobrow) ([Obituary](https://web.archive.org/web/20231002012901/https://www.paloaltoonline.com/obituaries/memorials/daniel-danny-g-bobrow-phd?o=4957)) #### [John Sybalsky](http://www.sybalsky.net) diff --git a/content/en/history/timeline/_index.md b/content/en/history/timeline/_index.md index 7d4279a3f..51946eac2 100644 --- a/content/en/history/timeline/_index.md +++ b/content/en/history/timeline/_index.md @@ -135,7 +135,7 @@ In 1979, PARC began the design of the Dorado, a high performance personal workst - AAAI launch of 1108 (Dandelion) and 1132 (Dorado) -{{< image-gallery gallery_dir="/photos/AAAI82" >}} +{{< image-gallery gallery_dir="photos/AAAI82" >}} ### 1983 diff --git a/static/photos/AAAI82/AAAI82.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82.jpg diff --git a/static/photos/AAAI82/AAAI82_1.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_1.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_1.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_1.jpg diff --git a/static/photos/AAAI82/AAAI82_10.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_10.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_10.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_10.jpg diff --git a/static/photos/AAAI82/AAAI82_11.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_11.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_11.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_11.jpg diff --git a/static/photos/AAAI82/AAAI82_12.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_12.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_12.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_12.jpg diff --git a/static/photos/AAAI82/AAAI82_13.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_13.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_13.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_13.jpg diff --git a/static/photos/AAAI82/AAAI82_14.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_14.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_14.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_14.jpg diff --git a/static/photos/AAAI82/AAAI82_15.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_15.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_15.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_15.jpg diff --git a/static/photos/AAAI82/AAAI82_2.1.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_2.1.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_2.1.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_2.1.jpg diff --git a/static/photos/AAAI82/AAAI82_2.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_2.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_2.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_2.jpg diff --git a/static/photos/AAAI82/AAAI82_3.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_3.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_3.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_3.jpg diff --git a/static/photos/AAAI82/AAAI82_4.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_4.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_4.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_4.jpg diff --git a/static/photos/AAAI82/AAAI82_5.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_5.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_5.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_5.jpg diff --git a/static/photos/AAAI82/AAAI82_6.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_6.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_6.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_6.jpg diff --git a/static/photos/AAAI82/AAAI82_7.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_7.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_7.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_7.jpg diff --git a/static/photos/AAAI82/AAAI82_8.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_8.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_8.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_8.jpg diff --git a/static/photos/AAAI82/AAAI82_9.jpg b/content/en/history/timeline/photos/AAAI82/AAAI82_9.jpg similarity index 100% rename from static/photos/AAAI82/AAAI82_9.jpg rename to content/en/history/timeline/photos/AAAI82/AAAI82_9.jpg diff --git a/content/en/project/status/2023MedleyAnnualReport.md b/content/en/project/status/2023MedleyAnnualReport.md index 005474c00..2dc544131 100644 --- a/content/en/project/status/2023MedleyAnnualReport.md +++ b/content/en/project/status/2023MedleyAnnualReport.md @@ -7,7 +7,7 @@ aliases: - /project/news/2023medleyannualreport/ --- - +{{< static-img src="Resources/logo_red_no_border_568x385.png" width="284" height="194" >}} ### **Overview** diff --git a/content/en/project/status/2024MedleyAnnualReport.md b/content/en/project/status/2024MedleyAnnualReport.md index fcd5e0275..6b7704caf 100755 --- a/content/en/project/status/2024MedleyAnnualReport.md +++ b/content/en/project/status/2024MedleyAnnualReport.md @@ -7,7 +7,8 @@ aliases: - /project/news/2023medleyannualreport/ --- - +{{< static-img src="Resources/logo_red_no_border_568x385.png" width="284" height="194" >}} + ## **Overview** diff --git a/content/en/project/status/2025MedleyAnnualReport.md b/content/en/project/status/2025MedleyAnnualReport.md index 75028fc55..3da0962cf 100644 --- a/content/en/project/status/2025MedleyAnnualReport.md +++ b/content/en/project/status/2025MedleyAnnualReport.md @@ -7,7 +7,7 @@ aliases: - /project/news/2025medleyannualreport/ --- - +{{< static-img src="Resources/logo_red_no_border_568x385.png" width="284" height="194" >}} ## **Overview** diff --git a/go.mod b/go.mod index b96314dad..1b1fd15ce 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,8 @@ module github.com/Interlisp/Interlisp.github.io -go 1.20 +go 1.24 require ( - github.com/google/docsy v0.10.0 // indirect + github.com/google/docsy v0.14.3 // indirect github.com/google/docsy/dependencies v0.7.2 // indirect ) diff --git a/go.sum b/go.sum index 25f0e2cb7..dda9d0e98 100644 --- a/go.sum +++ b/go.sum @@ -1,12 +1,11 @@ github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo= -github.com/FortAwesome/Font-Awesome v0.0.0-20240108205627-a1232e345536/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo= -github.com/FortAwesome/Font-Awesome v0.0.0-20240402185447-c0f460dca7f7/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo= github.com/FortAwesome/Font-Awesome v0.0.0-20241216213156-af620534bfc3/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo= -github.com/google/docsy v0.10.0 h1:6tMDacPwAyRWNCfvsn/9qGOZDQ8b0aRzjRZvnZPY5dg= -github.com/google/docsy v0.10.0/go.mod h1:c0nIAqmRTOuJ01F85U/wJPQtc3Zj9N58Kea9bOT2AJc= +github.com/google/docsy v0.14.2 h1:XJud05ZWCUFgvE9G1KdxhGsDdr7OmWYdnWPxrclIPWE= +github.com/google/docsy v0.14.2/go.mod h1:1Fj1W1O3esZh7IBQ8XAYtxtg10udBXuGI89+LUQc1AU= +github.com/google/docsy v0.14.3 h1:4uFgPWTPj4NT79IboVkXGi49LLQadLVfU4WNOfD/s74= +github.com/google/docsy v0.14.3/go.mod h1:1Fj1W1O3esZh7IBQ8XAYtxtg10udBXuGI89+LUQc1AU= github.com/google/docsy/dependencies v0.7.2 h1:+t5ufoADQAj4XneFphz4A+UU0ICAxmNaRHVWtMYXPSI= github.com/google/docsy/dependencies v0.7.2/go.mod h1:gihhs5gmgeO+wuoay4FwOzob+jYJVyQbNaQOh788lD4= github.com/twbs/bootstrap v4.6.2+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= github.com/twbs/bootstrap v5.2.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= -github.com/twbs/bootstrap v5.3.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= -github.com/twbs/bootstrap v5.3.6+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= +github.com/twbs/bootstrap v5.3.8+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= diff --git a/layouts/-save.html b/layouts/-save.html deleted file mode 100644 index 74ad9cbeb..000000000 --- a/layouts/-save.html +++ /dev/null @@ -1,7 +0,0 @@ -{{ define "main" }} -
-
-

Go Home

-
-
-{{ end }} diff --git a/layouts/Gallery/baseof.html b/layouts/Gallery/baseof.html deleted file mode 100644 index 962f80c88..000000000 --- a/layouts/Gallery/baseof.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - {{ partial "head.html" . }} - - -
- {{ partial "navbar.html" . }} -
-
-
-
- - -
- {{ partial "version-banner.html" . }} - {{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }} - {{ block "main" . }}{{ end }} -
-
-
- {{ partial "footer.html" . }} -
- {{ partial "scripts.html" . }} - - diff --git a/layouts/Gallery/list.html b/layouts/Gallery/list.html deleted file mode 100644 index f1e218b24..000000000 --- a/layouts/Gallery/list.html +++ /dev/null @@ -1,14 +0,0 @@ -{{ define "main" }} - -{{ .Content }} - -{{ range $p := .RegularPagesRecursive }} -
- -

{{ .Title }}

- -
-
-{{ end }} - -{{ end }} diff --git a/layouts/Gallery/single.html b/layouts/Gallery/single.html deleted file mode 100644 index f7fd95c38..000000000 --- a/layouts/Gallery/single.html +++ /dev/null @@ -1,34 +0,0 @@ -{{ define "main" }} -
-

{{ .Title }}

- {{ with .Params.description }}
{{ . | markdownify }}
{{ end }} - {{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }} - {{ partial "reading-time.html" . }} - {{ end }} - {{ .Content }} -

- - - -

-

- [Input .gv File] - [SVG] - [Raster Image] -

- {{ $gv_src := readFile (print .File.Dir .Params.gv_file) }} - {{ partial "dot_card" (dict "context" . "gv_src" $gv_src "header" .Params.gv_file) }} - {{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.GoogleAnalytics)) }} - {{ partial "feedback.html" .Site.Params.ui.feedback }} -
- {{ end }} - {{ if (.Site.Params.DisqusShortname) }} -
- {{ partial "disqus-comment.html" . }} - {{ end }} -

- {{- .Params.copyright -}} -

- {{ partial "page-meta-lastmod.html" . }} -
-{{ end}} diff --git a/layouts/_partials/favicons.html b/layouts/_partials/favicons.html new file mode 100644 index 000000000..fd11a28fe --- /dev/null +++ b/layouts/_partials/favicons.html @@ -0,0 +1,6 @@ +{{/* Modern favicon setup using SVG + fallbacks */}} +{{ $baseURL := .Site.BaseURL -}} + + + + diff --git a/layouts/partials/footer/links.html b/layouts/_partials/footer/links.html similarity index 100% rename from layouts/partials/footer/links.html rename to layouts/_partials/footer/links.html diff --git a/layouts/partials/hooks/head-end.html b/layouts/_partials/hooks/head-end.html similarity index 100% rename from layouts/partials/hooks/head-end.html rename to layouts/_partials/hooks/head-end.html diff --git a/layouts/partials/page-description.html b/layouts/_partials/page-description.html similarity index 100% rename from layouts/partials/page-description.html rename to layouts/_partials/page-description.html diff --git a/layouts/partials/page-meta-links.html b/layouts/_partials/page-meta-links.html similarity index 100% rename from layouts/partials/page-meta-links.html rename to layouts/_partials/page-meta-links.html diff --git a/layouts/partials/taxonomy_terms_cloud.html b/layouts/_partials/taxonomy_terms_cloud.html similarity index 100% rename from layouts/partials/taxonomy_terms_cloud.html rename to layouts/_partials/taxonomy_terms_cloud.html diff --git a/layouts/_shortcodes/blocks/cover.html b/layouts/_shortcodes/blocks/cover.html new file mode 100644 index 000000000..3c293a7fc --- /dev/null +++ b/layouts/_shortcodes/blocks/cover.html @@ -0,0 +1,44 @@ +{{/* Simplified cover block - based on Docsy v0.14.3, keeping watermark */}} +{{ $blockID := printf "td-cover-block-%d" .Ordinal -}} +{{ $promo_image := (.Page.Resources.ByType "image").GetMatch "**background*" -}} +{{ $col_id := .Get "color" | default "dark" -}} +{{ $image_anchor := .Get "image_anchor" | default "smart" -}} +{{/* Height can be one of: auto, min, med, max, full. */}} +{{ $height := .Get "height" | default "max" -}} +{{ $baseURL := .Site.BaseURL -}} + +{{ with $promo_image -}} + {{ $promo_image_big := . -}} + {{ $promo_image_small := . -}} + {{ if ne $promo_image.MediaType.SubType "svg" -}} + {{ $promo_image_big = .Fill (printf "1920x1080 %s" $image_anchor) -}} + {{ $promo_image_small = .Fill (printf "960x540 %s" $image_anchor) -}} + {{ end -}} + + + +{{ end -}} + +
+
+
+
+ {{ with .Get "title" }}

{{ . | html }}

{{ end }} + {{ with .Get "subtitle" }}

{{ . | html }}

{{ end }} +
{{ .Inner }}
+
+
+
+ {{ with .Get "byline" }}
{{ . }}
{{ end }} +
diff --git a/layouts/_shortcodes/image-gallery.html b/layouts/_shortcodes/image-gallery.html new file mode 100644 index 000000000..842873d56 --- /dev/null +++ b/layouts/_shortcodes/image-gallery.html @@ -0,0 +1,12 @@ +{{ $dir := string (.Get "gallery_dir") }} + \ No newline at end of file diff --git a/layouts/_shortcodes/static-img.html b/layouts/_shortcodes/static-img.html new file mode 100644 index 000000000..1b344d041 --- /dev/null +++ b/layouts/_shortcodes/static-img.html @@ -0,0 +1,4 @@ +{{/* static-img: Image shortcode that works with subpath baseURLs */}} +{{- $src := .Get "src" -}} +{{- $baseURL := .Site.BaseURL -}} +{{ . }} diff --git a/layouts/attr-types/baseof.html b/layouts/attr-types/baseof.html deleted file mode 100644 index 20af4e652..000000000 --- a/layouts/attr-types/baseof.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - {{ partial "head.html" . }} - - -
- {{ partial "navbar.html" . }} -
-
-
-
- - -
- {{ partial "version-banner.html" . }} - {{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }} - {{ block "main" . }}{{ end }} -
-
-
- {{ partial "footer.html" . }} -
- {{ partial "scripts.html" . }} - - \ No newline at end of file diff --git a/layouts/attr-types/content.html b/layouts/attr-types/content.html deleted file mode 100644 index 54a3364e2..000000000 --- a/layouts/attr-types/content.html +++ /dev/null @@ -1,43 +0,0 @@ -
-

{{ .Title }}

- {{ with .Params.description }}
{{ . | markdownify }}
{{ end }} -
- {{ $context := . }} - {{ if isset .Site.Params.Taxonomy "taxonomypageheader" }} - {{ range $index, $taxo := .Site.Params.Taxonomy.taxonomyPageHeader }} - {{ partial "taxonomy_terms_article.html" (dict "context" $context "taxo" $taxo ) }} - {{ end }} - {{ else }} - {{ range $taxo, $taxo_map := .Site.Taxonomies }} - {{ partial "taxonomy_terms_article.html" (dict "context" $context "taxo" $taxo ) }} - {{ end }} - {{ end }} - {{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }} - {{ partial "reading-time.html" . }} - {{ end }} -
- {{ .Content }} - -

-

Attributes

- {{ .Title }} is a valid type for: - - - {{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.GoogleAnalytics)) }} - {{ partial "feedback.html" .Site.Params.ui.feedback }} -
- {{ end }} - {{ if (.Site.Params.DisqusShortname) }} -
- {{ partial "disqus-comment.html" . }} - {{ end }} - {{ partial "page-meta-lastmod.html" . }} -
diff --git a/layouts/attr-types/single.html b/layouts/attr-types/single.html deleted file mode 100644 index 00cb3ab91..000000000 --- a/layouts/attr-types/single.html +++ /dev/null @@ -1,3 +0,0 @@ -{{ define "main" }} -{{ .Render "content" }} -{{ end }} \ No newline at end of file diff --git a/layouts/attrs/baseof.html b/layouts/attrs/baseof.html deleted file mode 100644 index 962f80c88..000000000 --- a/layouts/attrs/baseof.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - {{ partial "head.html" . }} - - -
- {{ partial "navbar.html" . }} -
-
-
-
- - -
- {{ partial "version-banner.html" . }} - {{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }} - {{ block "main" . }}{{ end }} -
-
-
- {{ partial "footer.html" . }} -
- {{ partial "scripts.html" . }} - - diff --git a/layouts/attrs/content.html b/layouts/attrs/content.html deleted file mode 100644 index 6574507e6..000000000 --- a/layouts/attrs/content.html +++ /dev/null @@ -1,45 +0,0 @@ -

-type: {{ range $i, $t := .Params.types -}} -{{- if $i }} | {{ end -}} -{{$t}} -{{- end -}} -{{- range $i, $d := .Params.defaults }} - {{- if eq $i 0 }}, default: {{ end }} - {{- if $i }}, {{ end -}} - {{- if reflect.IsMap $d -}} - {{ $d.default }} {{$d.for}} {{$d.suffix}} - {{- else -}} - {{ $d }} - {{- end -}} -{{- end -}} -{{- range $i, $minimum := .Params.minimums -}} - {{- if eq $i 0 }}, minimum: {{ end }} - {{- if $i }}, {{ end -}} - {{- $minimum -}} -{{- end -}} - -

- -{{ .Content }} - -Valid on: - - -{{- if .Params.flags -}} - Note: - {{ if eq (index .Params.flags 0) "notdot" }} - not dot - {{ else }} - {{ range $i, $flag := .Params.flags -}} - {{- if $i }}, {{ end -}} - {{ $flag }} - {{- end }} only - {{ end }} -{{- end -}} - diff --git a/layouts/attrs/list.html b/layouts/attrs/list.html deleted file mode 100644 index 67ea14d3f..000000000 --- a/layouts/attrs/list.html +++ /dev/null @@ -1,107 +0,0 @@ -{{ define "main" }} -
-

{{ .Title }}

- {{ with .Params.description }}
{{ . | markdownify }}
{{ end }} - {{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }} - {{ partial "reading-time.html" . }} - {{ end }} - -{{/* -`used_by` is a string consisting of `G`,`C`,`N`,`E`, indicating that the attribute - applies to graphs, clusters, nodes and edges, respectively. - -`types` is a list: Types can be `int`, `bool`, `string`, `double`, or a -special type. We assume there is an entry for the type in the `_attr_types/` -collection. - -`defaults` is a list: gives a description of the default values of the -attribute. - -`minimums` is a list: gives a description of the minimum values of the -attribute. It can contain arbitrary text. - -`flags`, if present, is a list of: - -- `bitmap` `cmap` `map` `postscript` `svg` - attribute limited to specified output formats -- `dot` `neato` `twopi` `circo` `fdp` `sfdp` - attribute limited to specified layouts -- `notdot` - attribute use in all layouts but dot -- `write` - attribute is write-only - -In the summary table, attributes are anchored with `#a:`. -In the description list, attributes are anchored with `#d:`. -The attributes are alphabetized on output. -*/}} - -{{ .Content }} - - - - - - - - - - -{{ range $attr := .Page.Pages }} - - - - - - - - -{{ end }} -
NameUsed ByTypeDefaultMinimumNotes
{{ .Title }}{{ .Params.used_by }} - {{- range $i, $type := .Params.types -}} - {{- if $i -}}
{{- end -}} - {{$type}} - {{- end -}} -
- {{- range $i, $d := .Params.defaults -}} - {{- if $i -}}
{{- end -}} - {{- if reflect.IsMap $d -}} - {{ $d.default }} {{$d.for}} {{$d.suffix}} - {{- else -}} - {{ $d }} - {{- end -}} - {{- end -}} -
- {{- range $i, $minimum := .Params.minimums -}} - {{- if $i -}}
{{- end -}} - {{ $minimum }} - {{- end -}} -
- {{- if .Params.flags -}} - {{- if eq (index .Params.flags 0) "notdot" -}} - not dot - {{- else -}} - {{- range $i, $flag := .Params.flags -}} - {{- if $i }}, {{ end -}} - {{ $flag }} - {{- end }} only - {{- end -}} - {{- end -}} -
- -{{ range $attr := .Page.Pages }} -

- {{ .Title }} -

- -{{ .Render "content" }} - -{{ end }} - - {{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.GoogleAnalytics)) }} - {{ partial "feedback.html" .Site.Params.ui.feedback }} -
- {{ end }} - {{ if (.Site.DisqusShortname) }} -
- {{ partial "disqus-comment.html" . }} - {{ end }} - {{ partial "page-meta-lastmod.html" . }} -
-{{ end }} diff --git a/layouts/attrs/single.html b/layouts/attrs/single.html deleted file mode 100644 index 61e095706..000000000 --- a/layouts/attrs/single.html +++ /dev/null @@ -1,16 +0,0 @@ -{{ define "main" }} -
-

{{ .Title }}

- {{ with .Params.description }}
{{ . | markdownify }}
{{ end }} - {{ .Render "content" }} - {{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.GoogleAnalytics)) }} - {{ partial "feedback.html" .Site.Params.ui.feedback }} -
- {{ end }} - {{ if (.Site.DisqusShortname) }} -
- {{ partial "disqus-comment.html" . }} - {{ end }} - {{ partial "page-meta-lastmod.html" . }} -
-{{ end }} diff --git a/layouts/output/baseof.html b/layouts/output/baseof.html deleted file mode 100644 index 962f80c88..000000000 --- a/layouts/output/baseof.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - {{ partial "head.html" . }} - - -
- {{ partial "navbar.html" . }} -
-
-
-
- - -
- {{ partial "version-banner.html" . }} - {{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }} - {{ block "main" . }}{{ end }} -
-
-
- {{ partial "footer.html" . }} -
- {{ partial "scripts.html" . }} - - diff --git a/layouts/output/list.html b/layouts/output/list.html deleted file mode 100644 index f7a479e4c..000000000 --- a/layouts/output/list.html +++ /dev/null @@ -1,20 +0,0 @@ -{{ define "main" }} -
-

{{ .Title }}

- {{ with .Params.description }}
{{ . | markdownify }}
{{ end }} - {{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }} - {{ partial "reading-time.html" . }} - {{ end }} - {{ partial "output-section-index.html" . }} - {{ .Content }} - {{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.GoogleAnalytics)) }} - {{ partial "feedback.html" .Site.Params.ui.feedback }} -
- {{ end }} - {{ if (.Site.DisqusShortname) }} -
- {{ partial "disqus-comment.html" . }} - {{ end }} - {{ partial "page-meta-lastmod.html" . }} -
-{{ end }} diff --git a/layouts/output/single.html b/layouts/output/single.html deleted file mode 100644 index 3c8fda333..000000000 --- a/layouts/output/single.html +++ /dev/null @@ -1,13 +0,0 @@ -{{ define "main" }} - -Usage: - -
-{{ range .Page.Params.params }}
-$ dot -T{{ . }} input.dot
-{{- end }}
-
- -{{ .Render "content" }} - -{{ end }} diff --git a/layouts/partials/favicons.html b/layouts/partials/favicons.html deleted file mode 100644 index c68d1fbc5..000000000 --- a/layouts/partials/favicons.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/layouts/partials/hooks/body-end.html b/layouts/partials/hooks/body-end.html deleted file mode 100644 index 4f41decce..000000000 --- a/layouts/partials/hooks/body-end.html +++ /dev/null @@ -1,3 +0,0 @@ -{{range .Site.Params.custom_css -}} - -{{- end}} diff --git a/layouts/partials/navbar.html b/layouts/partials/navbar.html deleted file mode 100644 index 46197276f..000000000 --- a/layouts/partials/navbar.html +++ /dev/null @@ -1,86 +0,0 @@ -{{ $cover := and - (.HasShortcode "blocks/cover") - (not .Site.Params.ui.navbar_translucent_over_cover_disable) --}} -{{ $baseURL := urls.Parse $.Site.Params.Baseurl -}} - - \ No newline at end of file diff --git a/layouts/partials/output-section-index.html b/layouts/partials/output-section-index.html deleted file mode 100644 index b4a1145a5..000000000 --- a/layouts/partials/output-section-index.html +++ /dev/null @@ -1,29 +0,0 @@ -{{ $pages := (where .Site.Pages "Section" .Section).ByWeight }} -{{ $pages = (where $pages "Type" "!=" "search") }} -{{ $parent := .Page }} - - - - - - -{{ range $pages }} - {{ if eq .Parent $parent }} - {{ $manualLink := cond (isset .Params "manuallink") .Params.manualLink ( cond (isset .Params "manuallinkrelref") (relref . .Params.manualLinkRelref) .RelPermalink) }} - - - - - - {{ end }} -{{ end }} -
FormatCommand-line parameterDescription
- {{- .Title -}} - - {{ range $i, $v := .Params.params }} - {{ if $i }}
{{ end }} - {{$v}} - {{end}} -
-

{{ .Description | markdownify }}

-
diff --git a/layouts/partials/page-meta-lastmod.html b/layouts/partials/page-meta-lastmod.html deleted file mode 100644 index 1b4e36a05..000000000 --- a/layouts/partials/page-meta-lastmod.html +++ /dev/null @@ -1,13 +0,0 @@ -{{ if and .GitInfo .Site.Params.github_repo -}} -
- -
-{{ end -}} \ No newline at end of file diff --git a/layouts/shortcodes/blocks/cover.html b/layouts/shortcodes/blocks/cover.html deleted file mode 100644 index 2b6bc2437..000000000 --- a/layouts/shortcodes/blocks/cover.html +++ /dev/null @@ -1,57 +0,0 @@ -{{ $_hugo_config := `{ "version": 1 }` -}} -{{ $blockID := printf "td-cover-block-%d" .Ordinal -}} -{{ $promo_image := (.Page.Resources.ByType "image").GetMatch "**background*" -}} -{{ $logo_image := (.Page.Resources.ByType "image").GetMatch "**logo*" -}} -{{ $col_id := .Get "color" | default "dark" -}} -{{ $image_anchor := .Get "image_anchor" | default "smart" -}} -{{ $logo_anchor := .Get "logo_anchor" | default "smart" -}} -{{/* Height can be one of: auto, min, med, max, full. */ -}} -{{ $height := .Get "height" | default "max" -}} -{{ with $promo_image -}} - -{{ $promo_image_big := (.Fill (printf "1920x1080 %s" $image_anchor)) -}} -{{ $promo_image_small := (.Fill (printf "960x540 %s" $image_anchor)) -}} - -{{ $promo_image_big := trim $promo_image_big "/" }} -{{ $promo_image_small := trim $promo_image_small "/" }} - - - - -{{ end -}} - -
-
-
-
- {{ with .Get "title" }}

{{ $title := . }}{{ with $logo_image }}{{ $logo_image_resized := (.Fit (printf "70x70 %s" $logo_anchor)) }}{{ end }}{{ $title | html }}

{{ end }} - {{ with .Get "subtitle" }}

{{ . | html }}

{{ end }} -
- {{ if eq .Page.File.Ext "md" }} - {{ .Inner | markdownify }} - {{ else }} - {{ .Inner | htmlUnescape | safeHTML }} - {{ end }} -
-
-
-
- {{ with .Get "byline" | default "" -}} -
{{ . }}
- {{- end }} -
diff --git a/layouts/shortcodes/button.html b/layouts/shortcodes/button.html deleted file mode 100644 index ea6e91411..000000000 --- a/layouts/shortcodes/button.html +++ /dev/null @@ -1,14 +0,0 @@ -{{ $_hugo_config := `{ "version": 1 }` }} - - {{ $icon := .Get "icon" }} - {{ $iconposition := .Get "icon-position" }} - {{ if ($icon) }} - {{ if or (not ($iconposition)) (eq $iconposition "left") }} - - {{ end }} - {{ end }} - {{ .Inner }} - {{ if and ($icon) (eq $iconposition "right")}} - - {{ end }} - \ No newline at end of file diff --git a/layouts/shortcodes/gdocs.html b/layouts/shortcodes/gdocs.html deleted file mode 100644 index aa3ad33aa..000000000 --- a/layouts/shortcodes/gdocs.html +++ /dev/null @@ -1,3 +0,0 @@ -
- -
\ No newline at end of file diff --git a/layouts/shortcodes/image-gallery.html b/layouts/shortcodes/image-gallery.html deleted file mode 100644 index ba553d1a4..000000000 --- a/layouts/shortcodes/image-gallery.html +++ /dev/null @@ -1,23 +0,0 @@ - - -{{ $dir := string (.Get "gallery_dir") }} - \ No newline at end of file diff --git a/layouts/shortcodes/read_file.html b/layouts/shortcodes/read_file.html deleted file mode 100644 index b4d169557..000000000 --- a/layouts/shortcodes/read_file.html +++ /dev/null @@ -1 +0,0 @@ -{{- readFile ($.Get "file") -}} diff --git a/package-lock.json b/package-lock.json index 07e60ed3a..824707026 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,8 @@ "": { + "name": "Interlisp.github.io", + "dependencies": { "jquery": "^3.7.1", @@ -22,6 +24,8 @@ "autoprefixer": "^10.4.8", + "hugo-extended": "^0.155.3", + "postcss": "^8.4.16", "postcss-cli": "^10.0.0" @@ -30,6 +34,30 @@ }, + "node_modules/@isaacs/fs-minipass": { + + "version": "4.0.1", + + "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", + + "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", + + "dev": true, + + "dependencies": { + + "minipass": "^7.0.4" + + }, + + "engines": { + + "node": ">=18.0.0" + + } + + }, + "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", @@ -100,6 +128,24 @@ }, + "node_modules/adm-zip": { + + "version": "0.5.16", + + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.16.tgz", + + "integrity": "sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==", + + "dev": true, + + "engines": { + + "node": ">=12.0" + + } + + }, + "node_modules/ansi-regex": { "version": "5.0.1", @@ -260,17 +306,17 @@ "node_modules/braces": { - "version": "3.0.2", + "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, @@ -424,6 +470,24 @@ }, + "node_modules/chownr": { + + "version": "3.0.0", + + "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", + + "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", + + "dev": true, + + "engines": { + + "node": ">=18" + + } + + }, + "node_modules/cliui": { "version": "7.0.4", @@ -618,11 +682,11 @@ "node_modules/fill-range": { - "version": "7.0.1", + "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, @@ -838,6 +902,42 @@ }, + "node_modules/hugo-extended": { + + "version": "0.155.3", + + "resolved": "https://registry.npmjs.org/hugo-extended/-/hugo-extended-0.155.3.tgz", + + "integrity": "sha512-nzGmsgnOdeOGDgtpPHEPZ1PVizDHPU3240UdRmxu0b9vT+A7iB9toaUGcUQXQ/PVURq6y8lIuoTFsI4xfDoLLA==", + + "dev": true, + + "hasInstallScript": true, + + "dependencies": { + + "adm-zip": "^0.5.16", + + "tar": "^7.5.7" + + }, + + "bin": { + + "hugo": "dist/cli.mjs", + + "hugo-extended": "dist/cli.mjs" + + }, + + "engines": { + + "node": ">=18.17" + + } + + }, + "node_modules/ignore": { "version": "5.2.0", @@ -1030,17 +1130,17 @@ "node_modules/micromatch": { - "version": "4.0.5", + "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" @@ -1054,16 +1154,70 @@ }, + "node_modules/minipass": { + + "version": "7.1.2", + + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + + "dev": true, + + "engines": { + + "node": ">=16 || 14 >=14.17" + + } + + }, + + "node_modules/minizlib": { + + "version": "3.1.0", + + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz", + + "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==", + + "dev": true, + + "dependencies": { + + "minipass": "^7.1.2" + + }, + + "engines": { + + "node": ">= 18" + + } + + }, + "node_modules/nanoid": { - "version": "3.3.4", + "version": "3.3.11", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "dev": true, + "funding": [ + + { + + "type": "github", + + "url": "https://github.com/sponsors/ai" + + } + + ], + "bin": { "nanoid": "bin/nanoid.cjs" @@ -1146,11 +1300,11 @@ "node_modules/picocolors": { - "version": "1.0.0", + "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true @@ -1200,11 +1354,11 @@ "node_modules/postcss": { - "version": "8.4.16", + "version": "8.5.6", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", - "integrity": "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", "dev": true, @@ -1224,17 +1378,25 @@ "url": "https://tidelift.com/funding/github/npm/postcss" + }, + + { + + "type": "github", + + "url": "https://github.com/sponsors/ai" + } ], "dependencies": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.11", - "picocolors": "^1.0.0", + "picocolors": "^1.1.1", - "source-map-js": "^1.0.2" + "source-map-js": "^1.2.1" }, @@ -1624,11 +1786,11 @@ "node_modules/source-map-js": { - "version": "1.0.2", + "version": "1.2.1", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true, @@ -1702,6 +1864,38 @@ }, + "node_modules/tar": { + + "version": "7.5.7", + + "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.7.tgz", + + "integrity": "sha512-fov56fJiRuThVFXD6o6/Q354S7pnWMJIVlDBYijsTNx6jKSE4pvrDTs6lUnmGvNyfJwFQQwWy3owKz1ucIhveQ==", + + "dev": true, + + "dependencies": { + + "@isaacs/fs-minipass": "^4.0.0", + + "chownr": "^3.0.0", + + "minipass": "^7.1.2", + + "minizlib": "^3.1.0", + + "yallist": "^5.0.0" + + }, + + "engines": { + + "node": ">=18" + + } + + }, + "node_modules/thenby": { "version": "1.3.4", @@ -1860,19 +2054,49 @@ }, + "node_modules/yallist": { + + "version": "5.0.0", + + "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", + + "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", + + "dev": true, + + "engines": { + + "node": ">=18" + + } + + }, + "node_modules/yaml": { - "version": "2.1.1", + "version": "2.8.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz", - "integrity": "sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==", + "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==", "dev": true, + "bin": { + + "yaml": "bin.mjs" + + }, + "engines": { - "node": ">= 14" + "node": ">= 14.6" + + }, + + "funding": { + + "url": "https://github.com/sponsors/eemeli" } @@ -1936,6 +2160,24 @@ "dependencies": { + "@isaacs/fs-minipass": { + + "version": "4.0.1", + + "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", + + "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", + + "dev": true, + + "requires": { + + "minipass": "^7.0.4" + + } + + }, + "@nodelib/fs.scandir": { "version": "2.1.5", @@ -1988,6 +2230,18 @@ }, + "adm-zip": { + + "version": "0.5.16", + + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.16.tgz", + + "integrity": "sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==", + + "dev": true + + }, + "ansi-regex": { "version": "5.0.1", @@ -2080,17 +2334,17 @@ "braces": { - "version": "3.0.2", + "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, "requires": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" } @@ -2164,6 +2418,18 @@ }, + "chownr": { + + "version": "3.0.0", + + "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", + + "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", + + "dev": true + + }, + "cliui": { "version": "7.0.4", @@ -2328,11 +2594,11 @@ "fill-range": { - "version": "7.0.1", + "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, @@ -2472,6 +2738,26 @@ }, + "hugo-extended": { + + "version": "0.155.3", + + "resolved": "https://registry.npmjs.org/hugo-extended/-/hugo-extended-0.155.3.tgz", + + "integrity": "sha512-nzGmsgnOdeOGDgtpPHEPZ1PVizDHPU3240UdRmxu0b9vT+A7iB9toaUGcUQXQ/PVURq6y8lIuoTFsI4xfDoLLA==", + + "dev": true, + + "requires": { + + "adm-zip": "^0.5.16", + + "tar": "^7.5.7" + + } + + }, + "ignore": { "version": "5.2.0", @@ -2612,17 +2898,17 @@ "micromatch": { - "version": "4.0.5", + "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" @@ -2630,13 +2916,43 @@ }, + "minipass": { + + "version": "7.1.2", + + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + + "dev": true + + }, + + "minizlib": { + + "version": "3.1.0", + + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz", + + "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==", + + "dev": true, + + "requires": { + + "minipass": "^7.1.2" + + } + + }, + "nanoid": { - "version": "3.3.4", + "version": "3.3.11", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "dev": true @@ -2692,11 +3008,11 @@ "picocolors": { - "version": "1.0.0", + "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true @@ -2728,21 +3044,21 @@ "postcss": { - "version": "8.4.16", + "version": "8.5.6", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", - "integrity": "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", "dev": true, "requires": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.11", - "picocolors": "^1.0.0", + "picocolors": "^1.1.1", - "source-map-js": "^1.0.2" + "source-map-js": "^1.2.1" } @@ -2956,11 +3272,11 @@ "source-map-js": { - "version": "1.0.2", + "version": "1.2.1", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true @@ -3016,6 +3332,32 @@ }, + "tar": { + + "version": "7.5.7", + + "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.7.tgz", + + "integrity": "sha512-fov56fJiRuThVFXD6o6/Q354S7pnWMJIVlDBYijsTNx6jKSE4pvrDTs6lUnmGvNyfJwFQQwWy3owKz1ucIhveQ==", + + "dev": true, + + "requires": { + + "@isaacs/fs-minipass": "^4.0.0", + + "chownr": "^3.0.0", + + "minipass": "^7.1.2", + + "minizlib": "^3.1.0", + + "yallist": "^5.0.0" + + } + + }, + "thenby": { "version": "1.3.4", @@ -3112,13 +3454,25 @@ }, + "yallist": { + + "version": "5.0.0", + + "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", + + "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", + + "dev": true + + }, + "yaml": { - "version": "2.1.1", + "version": "2.8.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz", - "integrity": "sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==", + "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==", "dev": true diff --git a/package.json b/package.json index 87bd243f1..7acc342bb 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,8 @@ "autoprefixer": "^10.4.8", + "hugo-extended": "^0.155.3", + "postcss": "^8.4.16", "postcss-cli": "^10.0.0" diff --git a/static/Resources/favicon.png b/static/Resources/favicon.png deleted file mode 100644 index f120260e7..000000000 Binary files a/static/Resources/favicon.png and /dev/null differ diff --git a/static/css/custom.css b/static/css/custom.css deleted file mode 100644 index 9ef9b516c..000000000 --- a/static/css/custom.css +++ /dev/null @@ -1,16 +0,0 @@ -/* Custom styles used by home page */ -.hero-content-column { - background-position: -2 0; - background-repeat: no-repeat; - background-size: 26em 28em; -} - -.hero-content-column .text-center h0, .hero-content-column .text-center p { - text-shadow: 2px 3px 0 #333; -} - -.hero-content-column .top-summary { - background: rgba(-1,0,0,0.3); - padding: 7px; - border-radius: 11px; -} \ No newline at end of file diff --git a/static/favicons/apple-touch-icon.png b/static/favicons/apple-touch-icon.png new file mode 100644 index 000000000..fbaabfdba Binary files /dev/null and b/static/favicons/apple-touch-icon.png differ diff --git a/static/favicons/favicon-96x96.png b/static/favicons/favicon-96x96.png new file mode 100644 index 000000000..ae284f5ad Binary files /dev/null and b/static/favicons/favicon-96x96.png differ diff --git a/static/favicons/favicon.ico b/static/favicons/favicon.ico new file mode 100644 index 000000000..d51f0f17f Binary files /dev/null and b/static/favicons/favicon.ico differ diff --git a/static/favicons/favicon.png b/static/favicons/favicon.png deleted file mode 100644 index f120260e7..000000000 Binary files a/static/favicons/favicon.png and /dev/null differ diff --git a/static/favicons/favicon.svg b/static/favicons/favicon.svg new file mode 100644 index 000000000..ed4f147d2 --- /dev/null +++ b/static/favicons/favicon.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file