Skip to content

Instantly share code, notes, and snippets.

@mneuhaus
Created October 16, 2014 11:08
Show Gist options
  • Save mneuhaus/ea6e9f302bda00fb53a3 to your computer and use it in GitHub Desktop.
Save mneuhaus/ea6e9f302bda00fb53a3 to your computer and use it in GitHub Desktop.
{namespace v=FluidTYPO3\Vhs\ViewHelpers}
{namespace flux=FluidTYPO3\Flux\ViewHelpers}
<f:layout name="Content" />
<f:section name="Configuration">
<flux:form id="grid3" options="{useTypoScript: 0}" label="Grid: 50-50">
<flux:grid>
<flux:grid.row>
<flux:grid.column style="width: 50%;border-right: 1px dotted #999;" name="column1" label="Spalte 1" />
<flux:grid.column style="width: 50%;" name="column2" label="Spalte 2" />
</flux:grid.row>
</flux:grid>
</flux:form>
</f:section>
<f:section name="Preview">
<flux:widget.grid />
</f:section>
<f:section name="Main">
<div class="row bottom-spacer">
<div class="col-xs-6">
<flux:content.render area="column1" />
</div>
<div class="col-xs-6">
<flux:content.render area="column2" />
</div>
</div>
</f:section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment