EKM Tag: [ekm:mainsitelink]
This tag outputs a HTML link which goes to your existing site. This can be specified in the backend of your EKM under settings. The text on this link can also be changed in the "Design" section of your account.
- Tag Information
- Nesting This Tag
[ekm:mainsitelink][/ekm:mainsitelink]
<style type="text/css">
.mainsitelink-button a {
color: #fff;
padding: 5px 10px;
background: #fc329c;
border-radius: 2px;
font-size: 14px;
text-decoration: none;
}
</style>
<span class="mainsitelink-button">[ekm:mainsitelink][/ekm:mainsitelink]</span>
The EKM system allows for some tags to be nested within other tags.
When nesting this tag you do not need to make any changes to it. It can be inserted into other tags like below.
[ekm:show_webpages]
output_start='
<ul id="extra-page-nav">
<li>[ekm:mainsitelink][/ekm:mainsitelink]</li>
';
output_item='<li><a href="[url]" class="normal">[page_title]</a></li>';
output_end='</ul>';
[/ekm:show_webpages]