This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- sample Liquid template to display recent 5 articles across the entire helpdesk --> | |
<section class="sidebar content rounded-6"> | |
<div class="cs-g-c"> | |
<section class="article-list"> | |
<h3 class="list-lead">Latest articles in {{ portal.name }}</h3> | |
{% for article in portal.recent_articles limit: 5 %} | |
<a href="article.url">{{ article.title }}</a> | |
<br /> | |
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
.note_plug_data{ | |
border-bottom: 1px solid #666; | |
padding-top: 5px; | |
} | |
.plug-used-div{ | |
margin-top: 5px; | |
margin-bottom: 5px; | |
min-height: 19px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" src="https://s3.amazonaws.com/assets.freshdesk.com/widget/freshwidget.js "></script> <script type="text/javascript"> FreshWidget.init("", {"queryString": "", "buttonText": "Support", "buttonColor": "#ffffff", "buttonBg": "#b73595", "alignment": "4", "offset": "450px", "url": "https://yourwebsite.freshdesk.com", "assetUrl": "https://s3.amazonaws.com/assets.freshdesk.com/widget"} ); </script> |