Skip to content

Commit

Permalink
Make repo readme a little dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
RickCogley committed Nov 18, 2024
1 parent 3a1bab0 commit 6f3fdb5
Show file tree
Hide file tree
Showing 4 changed files with 188 additions and 3 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[![Deploy to Deno Deploy](https://github.com/rickcogley/rick.cogley.jp/actions/workflows/deploy.yml/badge.svg)](https://github.com/rickcogley/rick.cogley.jp/actions/workflows/deploy.yml)

Rick Cogley's current events landing page page, generated via «[Lume ルメ](https://lume.land/)» SSG using [Vento](https://vento.js.org/) templates, and hosted on [Deno Deploy](https://deno.com/deploy) as static files.

**Today is:** Tuesday, November 19, 2024

Rick Cogley's current events landing page page, generated via «[Lume ルメ](https://lume.land/)» SSG using [Vento](https://vento.js.org/) templates, and hosted on [Deno Deploy](https://deno.com/deploy) as static files.

Many thanks to [Óscar Otero](https://oscarotero.com/), creator of Lume, [Lume CMS](https://lume.land/cms/), and Vento, for his great work coding useful tools, and for his help answering questions. 🙏🏻

## Notes:
Expand All @@ -12,3 +14,10 @@ Many thanks to [Óscar Otero](https://oscarotero.com/), creator of Lume, [Lume C
[Google Fonts](https://fonts.google.com/specimen/Alegreya?query=alegreya)
- Icons: from [Phosphor](https://phosphoricons.com/)
- CSS base library: [Tachyons](https://tachyons.io/)

## Stats:

| Item | Value |
| --- | --- |
| Total Files | 163 |

5 changes: 5 additions & 0 deletions _config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ site.script(
"maketree",
"cd _site && tree -H . -L 5 --charset utf-8 -C -h -o rick_cogley_jp_tree.html",
);
site.script(
"copyreadme",
"cd _site && cp repo-readme.md ../README.md",
);
// site.script(
// "getjpholidays",
// "cd src/_data && curl https://holidays-jp.github.io/api/v1/date.json -o jp_holidays.json",
Expand All @@ -109,5 +113,6 @@ site.script(
// Execute scripts after build
site.addEventListener("afterBuild", "zipsite");
site.addEventListener("afterBuild", "maketree");
site.addEventListener("afterBuild", "copyreadme");

export default site;
Loading

0 comments on commit 6f3fdb5

Please sign in to comment.