Skip to content

Instantly share code, notes, and snippets.

@randomresult
Last active December 29, 2015 10:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save randomresult/7656271 to your computer and use it in GitHub Desktop.
Save randomresult/7656271 to your computer and use it in GitHub Desktop.
Fluid-Template to use for flux/vhs/fluid - Base to make a file-Template in PHPStorm
{namespace f=Tx_Fluid_ViewHelpers}
{namespace v=Tx_Vhs_ViewHelpers}
{namespace flux=Tx_Flux_ViewHelpers}
<f:layout name="layoutName"/>
<?xml version="1.0" encoding="UTF-8" ?>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"
xmlns:flux="http://typo3.org/ns/flux/ViewHelpers"
xmlns:v="http://typo3.org/ns/vhs/ViewHelpers"
xmlns:f="http://typo3.org/ns/fluid/ViewHelpers"
>
<head>
<title>Template:myTemplate</title>
</head>
<body>
<f:section name="Configuration">
</f:section>
<f:section name="Preview">
</f:section>
<f:section name="Main">
<!-- Fluid goes here -->
</f:section>
</body>
</html>
@misterboe
Copy link

{namespace v=Tx_Vhs_ViewHelpers}
{namespace flux=Tx_Flux_ViewHelpers}
<f:layout name="layoutName" />
<div xmlns="http://www.w3.org/1999/xhtml" lang="en"
     xmlns:v="http://fedext.net/ns/vhs/ViewHelpers"
     xmlns:flux="http://fedext.net/ns/flux/ViewHelpers"
     xmlns:f="http://typo3.org/ns/fluid/ViewHelpers">
     <!-- Fluid goes here -->
</div>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment