Showing 10 of 2,055 results.

Specifying the Blueprint(s) | Template IDE Hints

You may specify which blueprint(s) apply to any template file by using the @blueprint directive: 1 {{# 2 @name The template name. 3 @desc A human-friendly description for your awesome template. 4 @blueprint blueprintName 5 #}} 6 7 The rest of your...

Specifying Bard or Replicator Sets | Template IDE Hints

If you are dynamically loading a partial based on a set type (such as when creating templates for a Bard or Replicator field), you can specify which set within the corresponding blueprint applies to a file by using the special @set directive: 1...

Default Variables

Meerkat provides a wide range of default values you can use to build your comment threads in addition to any custom values specified in your blueprint . In addition to the default variables and blueprint values, Meerkat addons can also provide...

Querying Document Nodes

Many methods are available to help quickly locate specific Blade constructs within a document. The following demonstrates how we can quickly retrieve the inner content of all echo statements within a document: 1 <?php 2 3 use Stillat \ BladeParser...

X-UA-Compatible | General Metadata

The xUaCompatible helper method queues a <meta http-equiv="X-UA-Compatible" content="..."> tag. By default it uses IE=edge as the content. 1 <?php 2 3 use Stillat \ StatamicSiteEssentials \ Support \ Facades \ Metadata ; 4 5 Metadata :: general (...

setFilePath | Blade Documents

Sets the document's file path. Document file paths are optional for most use cases, but can be used by other features such as Workspaces or some validators. Argument Description $path The file path. 1 <?php 2 3 use Stillat \ BladeParser \ Document...