diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2022-12-05 05:03:45 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2022-12-05 05:03:45 -0600 |
commit | 0b8441c79b047f81526bbb83febc40d7530e35d6 (patch) | |
tree | 71f4f3b51685fc81cda226476302c9084146ab39 /pyssg.xyz/dst | |
parent | e69392a52f102d169c7d80994d169ba0743747a1 (diff) |
add extra configuration for more control, add pyssg.xyz example
this is the first step towards creating a way to handle multiple subdomains/configs in a single run for a more cohesive site generation
Diffstat (limited to 'pyssg.xyz/dst')
-rw-r--r-- | pyssg.xyz/dst/subdir/test2.html | 19 | ||||
-rw-r--r-- | pyssg.xyz/dst/test.html | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/pyssg.xyz/dst/subdir/test2.html b/pyssg.xyz/dst/subdir/test2.html new file mode 100644 index 0000000..1f0082f --- /dev/null +++ b/pyssg.xyz/dst/subdir/test2.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <base href="https://static.pyssg.xyz"> + <title>Test file in subdir -- pyssg</title> + </head> + <body> + <h1>Test file in subdir</h1> + <p>By David Luevano</p> + <p>Created: Mon, Dec 05, 2022 @ 10:58 UTC</p> + <p>Modified: </p> + + <p>This is a small test for the newly added pyssg.xyz.</p> + + <p>Tags: + </p> + </body> +</html> diff --git a/pyssg.xyz/dst/test.html b/pyssg.xyz/dst/test.html new file mode 100644 index 0000000..0ce6abd --- /dev/null +++ b/pyssg.xyz/dst/test.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <base href="https://static.pyssg.xyz"> + <title>Index -- pyssg</title> + </head> + <body> + <h1>Index</h1> + <p>By David Luevano</p> + <p>Created: Mon, Dec 05, 2022 @ 08:05 UTC</p> + <p>Modified: </p> + + <p>This is a small test for the newly added pyssg.xyz.</p> + + <p>Tags: + </p> + </body> +</html> |