I have this typoscript:
page = PAGE
page.10 = TEMPLATE
page.10.template = FILE
page.10.template.file = fileadmin/templates/index.html
page.10.marks{
# Marker TITLE
TITLE = TEXT
TITLE.field = title
}
And in my template:
<html>
<head>
<title>Here goes the title</title>
<meta charset="utf-8" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="headertitle">###TITLE###</div>
</body>
</html>
Any idea why this wouldn’t work?
I mean I see the template on page show, but instead of title I get ###TITLE### shown
1 Answer