skip to Main Content

How do I let my typo3 Template show my page content?
Content:
enter image description here

Template Setup config:
enter image description here

I’ve read the typo3 documentation everywhere

2

Answers


  1. This is described in the documentation.

    page.10 = CONTENT
    page.10.table = tt_content
    page.10.select {
    
       # "sorting" is a column from the tt_content table and
       # keeps track of the sorting order, which was specified in
       # the backend.
       orderBy = sorting
    
       # Only select content from column "0" (the column called
       # "normal") and quote the database identifier (column name)
       # "colPos" (indicated by wrapping with {#})
       where = {#colPos}=0
    }
    

    or page.10 < styles.content.get

    Login or Signup to reply.
  2. What you got is an example where you can verify that your server is working. Like an apache server gives you the information, that you have reached the server.

    you need a rendering which loads database content and computes it into a web page.
    that could be pure typoscript, but the usual way today is a Fluid-template with rendering information for all content elements.

    Either you use an extension package which supports you with everything or you build it by your own.
    A start may be this page from the sitepackage tutorial

    You also can learn from the introduction package

    in general: learn FLUID

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search