19 lines
726 B
Plaintext
19 lines
726 B
Plaintext
@inherits Umbraco.Web.Macros.PartialViewMacroPage
|
|
@{
|
|
var link = Model.MacroParameters["Link"];
|
|
var title = Model.MacroParameters["Title"];
|
|
var description = Model.MacroParameters["Description"];
|
|
var faicon = Model.MacroParameters["FaIcon"];
|
|
var url = new UmbracoHelper(UmbracoContext.Current).TypedContent(link).Url;
|
|
}
|
|
|
|
<div class="container" style="margin-top: 0px; margin-bottom: 0px;">
|
|
<div class="row justify-content-md-center">
|
|
<div class="col-md-auto" style="margin-bottom: 0px;">
|
|
<a class="banner-alert text--center" href="@url">
|
|
<h4>@title <span class="fa @faicon"></span></h4>
|
|
<p>@description</p>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div> |