client/templates/list-bin.html
author rougeronj
Wed, 10 Jun 2015 16:00:45 +0200
changeset 475 e3537f6de112
parent 434 0d5998b32a7c
permissions -rw-r--r--
Merge with fd2b5a7ec356132ffd5b5115c9663cd46f37dfa9

<li class="Rk-Bin-Item Rk-ResourceList-Item" draggable="true"
    data-uri="<%-url%>" data-title="<%-title%>"
    data-description="<%-description%>"
    <% if (image) { %>
        data-image="<%- Rkns.Utils.getFullURL(image) %>"
    <% } else { %>
        data-image=""
    <% } %>
><% if (image) { %>
    <img class="Rk-ResourceList-Image" src="<%-image%>" />
<% } %>
<h4 class="Rk-ResourceList-Title">
    <% if (url) { %>
        <a href="<%-url%>" target="_blank">
    <% } %>
    <%=htitle%>
    <% if (url) { %></a><% } %>
    </h4>
    <% if (description) { %>
        <p class="Rk-ResourceList-Description"><%=hdescription%></p>
    <% } %>
    <% if (image) { %>
        <div style="clear: both;"></div>
    <% } %>
</li>