1<#assign
2 buttonText = languageUtil.get(locale, "more")
3 buttonTextHover = languageUtil.get(locale, "more")
4/>
5<#if MainLink.ButtonText?? && MainLink.ButtonText.getData() !="">
6 <#assign buttonText = MainLink.ButtonText.getData() />
7</#if>
8<#if MainLink.HoverButtonText?? && MainLink.HoverButtonText.getData() !="">
9 <#assign buttonTextHover = MainLink.HoverButtonText.getData() />
10</#if>
11
12<style>
13.redirectText {
14 font-family: "Rotis SemiSans W04 Bold" !important;
15 font-size: 20px !important;
16 color: #002d73 !important;
17}
18.redirectBtn {
19 font-size: 16px;
20 font-weight: 500;
21 background-color: #002d73;
22 width: 200px;
23 height: 54px;
24 position: relative;
25 overflow: hidden;
26 border-radius: 27px;
27 padding: 15px;
28 color: white;
29 text-decoration: none;
30 transition: all 0.2s ease-out;
31}
32.redirectBtn:hover {
33 background-color: #e3312a;
34 text-decoration: none;
35}
36.redirectBtn::after {
37 font-family: 'fontawesome-alloy';
38-webkit-font-smoothing: antialiased;
39font-style: normal;
40font-variant: normal;
41font-weight: normal;
42line-height: 1;
43text-decoration: none;
44text-transform: none;
45content: "\f054";
46color: white;
47margin-left: 10px;
48
49}
50</style>
51
52<div class="messer-article-detail alert alert-client" style="margin-bottom:30px;">
53 <div class="messer-article-content row" style="margin: 0 auto;">
54 <div class="col-lg-9 portlet-column portlet-column-first yui3-dd-drop" style="vertical-align: middle; display: table-cell;">
55 <div class="redirectText" style="vertical-align: middle; display: table-cell; padding-top: 1rem; padding-bottom: 0px; padding-left: 1rem;">
56 ${DetailContent.getData()}
57 </div>
58 </div>
59 <div class="col-lg-3 portlet-column portlet-column-last yui3-dd-drop" style="display: flex; flex-direction: column; justify-content: center; text-align: center">
60 <div class="button-holder" >
61 <#if MainLink.LinkToPage?? && MainLink.LinkToPage.getFriendlyUrl() != "">
62 <a class="redirectBtn" href="${MainLink.LinkToPage.getFriendlyUrl()}" title="${buttonTextHover}" style="color: white;">${buttonText}</a>
63 <#else>
64 <a target="${target}" class="redirectBtn" href="${MainLink.ExternalLink.getData()}" title="${buttonTextHover}" style="color: white;">${buttonText}</a>
65 </#if>
66 </div>
67 </div>
68 </div>
69</div>