| name | description |
|---|---|
ssg |
build websites from markdown files when generate ssg is prompted |
- When generate ssg is added to the prompt read src/content. When there are no markdown files display "Please add source files to the src/content directory."
| export default { | |
| title: 'Column', | |
| name: 'column', | |
| type: 'object', | |
| fieldsets: [ | |
| {name: 'content', title: 'Content', description: 'Only add content to one of the options'} | |
| ], | |
| fields: [ | |
| { | |
| title: 'Name', |
| $defaultBrowserValue = "chrome.exe" | |
| $browserInput = Read-Host "Enter browser executable (or press Enter for default [$defaultBrowserValue])" | |
| $browserValue = if ([string]::IsNullOrEmpty($browserInput)) { $defaultBrowserValue } else { $browserInput } | |
| $defaultBrowserSuffixValue = "" | |
| $browserInput = Read-Host "Enter browser suffix when added to the window (or press Enter for default [$defaultBrowserSuffixValue])" | |
| $browserSuffixValue = if ([string]::IsNullOrEmpty($browserInput)) { $defaultBrowserSuffixValue } else { $browserInput } | |
| $defaultDelayValue = "3" | |
| $delayInput = Read-Host "Enter tab appearance delay (or press Enter for default [$defaultDelayValue])" |
| #!/usr/bin/env php | |
| <?php | |
| declare(strict_types=1); | |
| require __DIR__ . '/vendor/autoload.php'; // Composer autoloader (if used) | |
| use Symfony\Component\Process\Process; | |
| /* ------------------------------------------------------------- | |
| Helper functions (no global state) |
| <?php | |
| declare(strict_types=1); | |
| namespace App\Pages\Frontend; | |
| use App\NotFound; | |
| use App\Pages\Database\FieldBooleanValues; | |
| use App\Pages\Database\FieldFloatValues; | |
| use App\Pages\Database\FieldIntegerValues; |