-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEATURE] Create a minimal site package (#189)
The information on how to create a minimial TypoScript output without a site package was moved to Getting started: TYPO3-Documentation/TYPO3CMS-Tutorial-GettingStarted#422 As this is the site package tutorial, add an example of a minimal site package instead. Releases: main * Apply suggestions from code review Co-authored-by: Sarah McCarthy <[email protected]> --------- Co-authored-by: Sarah McCarthy <[email protected]> (cherry picked from commit 4e282b8)
- Loading branch information
Showing
4 changed files
with
138 additions
and
74 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
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,7 @@ | ||
# Create the frontend output of the page | ||
page = PAGE | ||
page { | ||
# Show a text with value "Hello TypoScript World!" | ||
10 = TEXT | ||
10.value = Hello TypoScript World! | ||
} |
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,9 @@ | ||
page = PAGE | ||
page { | ||
10 = PAGEVIEW | ||
10 { | ||
paths { | ||
100 = EXT:site_package/Resources/Private/Templates/ | ||
} | ||
} | ||
} |