@@ -10,11 +10,13 @@ A minimal page created by pure TypoScript
1010TypoScript is the basic configuration language used to configure the frontend
1111output of a page in TYPO3.
1212
13- You can find detailed information about
14- :ref: `TypoScript <t3coreapi:typoscript-syntax-syntax >` and its syntax in
15- the reference "TYPO3 Explained" .
13+ Learn more about TypoScript in
14+ :ref: `Getting started: A quick introduction into TypoScript <t3tsref:guide >` in
15+ the :ref: ` TypoScript Reference < t3tsref:start >` .
1616
17- The semantics of TypoScript settings are listed in the
17+ You can find detailed information about the
18+ :ref: `TypoScript Syntax<t3tsref:typoscript-syntax> ` and a listing of all objects
19+ and with their properties and functions in the
1820:ref: `TypoScript Reference <t3tsref:start >`.
1921
2022.. _typoscript-hello-world :
@@ -37,11 +39,11 @@ containing your :ref:`site configuration <site-configuration>`.
3739 :linenos:
3840
3941#. Is a comment. See the Syntax of comments in TypoScript:
40- :ref: `Comments <t3coreapi :typoscript-syntax-syntax-comment-blocks >`.
42+ :ref: `Comments <t3tsref :typoscript-syntax-syntax-comment-blocks >`.
4143#. Assigns a top level object of type :ref: `PAGE <t3tsref:object-type-page >`
4244 to a variable called `page `.
4345#. The `page ` gets more options in this block. See the
44- :ref: `Blocks in the TypoScript syntax <t3coreapi :typoscript-syntax-syntax-curly-brackets >`.
46+ :ref: `Blocks in the TypoScript syntax <t3tsref :typoscript-syntax-syntax-curly-brackets >`.
4547#. Another comment.
4648#. Assigns a content object (also called "cObject") of type
4749 :ref: `TEXT <t3tsref:cobj-text >` to
@@ -114,7 +116,7 @@ Wrap "Hello, world." in p-tags
114116
1151174. As we now have several options for :ref: `TEXT <t3tsref:cobj-text >` object
116118 with path `page.10 `, we switch to the
117- :ref: `block syntax <t3coreapi :typoscript-syntax-syntax-curly-brackets >` here.
119+ :ref: `block syntax <t3tsref :typoscript-syntax-syntax-curly-brackets >` here.
1181205. Assign the text to the :confval: `value <t3tsref:text-value> ` property of
119121 the TEXT object.
1201226. We use the :confval: `stdWrap <t3tsref:text-stdwrap> ` property of the TEXT
@@ -153,7 +155,7 @@ Display the title of the current page on top
153155 :confval: `index number 5 <t3tsref:page-array> ` of `page `. As the index is
154156 smaller than the index 10 of the TEXT object containing the text
155157 "Hello World", it is displayed before the other object.
156- 4. Uses the :ref: `block syntax <t3coreapi :typoscript-syntax-syntax-curly-brackets >`
158+ 4. Uses the :ref: `block syntax <t3tsref :typoscript-syntax-syntax-curly-brackets >`
157159 to apply properties to the TEXT object.
1581605. Uses the stdWrap property :confval: `field <t3tsref:stdwrap-field> ` to fetch
159161 the field `title ` from the :ref: `database record <t3coreapi:database-records >`
@@ -168,5 +170,3 @@ Display the title of the current page on top
168170
169171 .. literalinclude :: _page-title_reverse.typoscript
170172 :caption: config/sites/main/setup.typoscript
171-
172- .. todo: Add more basic TypoScript examples
0 commit comments