diff options
-rw-r--r-- | Justfile | 8 | ||||
-rw-r--r-- | index.php | 3 | ||||
-rw-r--r-- | test/index.gmi | 3 |
3 files changed, 13 insertions, 1 deletions
@@ -1,5 +1,11 @@ +set export + +CSS := "body { + color: green; +}" + test: - GEMINI_HOST=localhost php -S localhost:8080 -t test test/index.php + GEMINI_HOST=localhost CSS=$CSS php -S localhost:8080 -t test test/index.php server: @@ -119,6 +119,9 @@ $content = ob_get_clean(); <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title><?php echo $title; ?></title> + <?php if (! empty($_ENV['CSS'])): ?> + <style><?php echo $_ENV['CSS']; ?></style> + <?php endif; ?> </head> <body> <?php echo $content; ?> diff --git a/test/index.gmi b/test/index.gmi new file mode 100644 index 0000000..efe70a6 --- /dev/null +++ b/test/index.gmi @@ -0,0 +1,3 @@ +# Test + +Test |