Skip to content

Commit 43b3710

Browse files
committed
[TASK] Link to Getting started: A quick introduction into TypoScript
releases: main, 13.4, 12.4 (cherry picked from commit 2c09052)
1 parent 560389e commit 43b3710

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Documentation/Concepts/TypoScript/Index.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@ A minimal page created by pure TypoScript
1010
TypoScript is the basic configuration language used to configure the frontend
1111
output 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:
@@ -38,11 +40,11 @@ In the TypoScript template Setup field, add the following three lines:
3840
:linenos:
3941

4042
#. Is a comment. See the Syntax of comments in TypoScript:
41-
:ref:`Comments <t3coreapi:typoscript-syntax-syntax-comment-blocks>`.
43+
:ref:`Comments <t3tsref:typoscript-syntax-syntax-comment-blocks>`.
4244
#. Assigns a top level object of type :ref:`PAGE <t3tsref:object-type-page>`
4345
to a variable called `page`.
4446
#. The `page` gets more options in this block. See the
45-
:ref:`Blocks in the TypoScript syntax <t3coreapi:typoscript-syntax-syntax-curly-brackets>`.
47+
:ref:`Blocks in the TypoScript syntax <t3tsref:typoscript-syntax-syntax-curly-brackets>`.
4648
#. Another comment.
4749
#. Assigns a content object (also called "cObject") of type
4850
:ref:`TEXT <t3tsref:cobj-text>` to
@@ -108,7 +110,7 @@ Wrap "Hello, world." in p-tags
108110

109111
4. As we now have several options for :ref:`TEXT <t3tsref:cobj-text>` object
110112
with path `page.10`, we switch to the
111-
:ref:`block syntax <t3coreapi:typoscript-syntax-syntax-curly-brackets>` here.
113+
:ref:`block syntax <t3tsref:typoscript-syntax-syntax-curly-brackets>` here.
112114
5. Assign the text to the :confval:`value <t3tsref:text-value>` property of
113115
the TEXT object.
114116
6. We use the :confval:`stdWrap <t3tsref:text-stdwrap>` property of the TEXT
@@ -147,7 +149,7 @@ Display the title of the current page on top
147149
:confval:`index number 5 <t3tsref:page-array>` of `page`. As the index is
148150
smaller than the index 10 of the TEXT object containing the text
149151
"Hello World", it is displayed before the other object.
150-
4. Uses the :ref:`block syntax <t3coreapi:typoscript-syntax-syntax-curly-brackets>`
152+
4. Uses the :ref:`block syntax <t3tsref:typoscript-syntax-syntax-curly-brackets>`
151153
to apply properties to the TEXT object.
152154
5. Uses the stdWrap property :confval:`field <t3tsref:stdwrap-field>` to fetch
153155
the field `title` from the :ref:`database record <t3coreapi:database-records>`
@@ -162,5 +164,3 @@ Display the title of the current page on top
162164

163165
.. literalinclude:: _page-title_reverse.typoscript
164166
:caption: "Setup" field in the TypoScript record
165-
166-
.. todo: Add more basic TypoScript examples

0 commit comments

Comments
 (0)