PageParagraphsEditInBackendUrl

Version: - string  

Summary

Returns a direct URL to the backend paragraph list.

Settings

The value is generated automatically.

Remarks

Requires that you are logged in to the backend.

Examples

Outputting the template tag

@GetString("PageParagraphsEditInBackendUrl")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("PageParagraphsEditInBackendUrl"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("PageParagraphsEditInBackendUrl"); }

Outputting the template tag

<!--@PageParagraphsEditInBackendUrl-->

Check if string has a value

<!--@If Defined(@PageParagraphsEditInBackendUrl)--> Let's output this tag here: <strong><!--@PageParagraphsEditInBackendUrl--></strong> <!--@EndIf(@PageParagraphsEditInBackendUrl)-->