Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.78 KB

README.md

File metadata and controls

45 lines (33 loc) · 1.78 KB

Components

Build Status Latest Stable Version Latest Unstable Version Total Downloads License

This module allows you to use special <:TemplateName> syntax to include templates. This allows you to pass inner HTML into a template, much like you can do in React with the children properties. Using the <:TemplateName> syntax will not automatically pass variables in the current scope like <% include %>.

<:MyButtonTemplate 
  icon="fa fa-icon"
  title="$Title"
>
    <span class="text">
        Look at me! Passing HTML in here!
    </span>
</:MyButtonTemplate>
<:SelfClosingTag passvariable="hey" />

Composer Install

composer require symbiote/silverstripe-components

Requirements

  • SilverStripe ^5

Documentation

Credits