-
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.
* home page * format * title * test * deno test -R --------- Co-authored-by: Dr. Ernie Prabhakar <19791+drernie@users.noreply.github.com>
- Loading branch information
Showing
6 changed files
with
103 additions
and
6 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 |
---|---|---|
|
@@ -37,5 +37,3 @@ jobs: | |
project: "swanfactory-online" | ||
entrypoint: "main.ts" | ||
root: "." | ||
|
||
|
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,37 @@ | ||
name: Test | ||
on: | ||
push: | ||
branches: | ||
- "**" | ||
pull_request: | ||
branches: | ||
- "**" | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
id-token: write # Needed for auth with Deno Deploy | ||
contents: read # Needed to clone the repository | ||
|
||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Deno | ||
uses: denoland/setup-deno@v2 | ||
with: | ||
deno-version: v2.x | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: lts/* | ||
|
||
- name: Install step | ||
run: "deno install" | ||
|
||
- name: Test | ||
run: "deno test -R" |
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
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,14 @@ | ||
<div class="content"> | ||
<p class="intro-text"></p> | ||
The SwanFactory online is your gateway to <strong>Polygogy</strong>—a revolutionary approach to lifelong learning that | ||
empowers everyone to grow, teach, and lead in a continuous cycle of transformation. | ||
</p> | ||
<p class="description"></p> | ||
Dive into the philosophy of Polygogy and discover how you can become a part of this dynamic learning movement: | ||
</p> | ||
<a class="external-link" href="https://theswanfactory.wordpress.com/2025/01/18/the-polygogy-manyfesto-reinventing-lifelong-learning/" | ||
target="_blank"> | ||
Read the Polygogy Manyfesto | ||
</a> | ||
<p class="coming-soon">Coming soon: subscribe to our mailing list.</p> | ||
</div> |
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,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>{{title}} - Swan Factory Online</title> | ||
<link | ||
rel="stylesheet" | ||
href="https://www.w3.org/StyleSheets/Core/Swiss" | ||
type="text/css" | ||
> | ||
<style> | ||
.site-footer { | ||
background-color: #f1f1f1; | ||
padding: 20px; | ||
text-align: center; | ||
position: fixed; | ||
bottom: 0; | ||
width: 100%; | ||
font-size: 12px; | ||
font-style: italic; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<header class="site-header"> | ||
<h1>{{title}}</h1> | ||
</header> | ||
<main> | ||
{{content}} | ||
</main> | ||
<footer class="site-footer"> | ||
<p>© 2025 The Swan Factory</p> | ||
</footer> | ||
</body> | ||
</html> |