Sha256: ff11854655b38e19318d4fd435510b1a55bc6c18238f13832952d87b3824bec5
Contents?: true
Size: 971 Bytes
Versions: 1
Compression:
Stored size: 971 Bytes
Contents
{%- assign comments = site.data.comments | where: "url", page.url -%} {%- assign comments_size = comments | size -%} <h3 class="display-4">Comments</h3> <div class="showSignedOut row"> <div class="col"> <a href="#" onclick="startLogin();">Sign in to leave a comment</a> </div> </div> <div class="showSignedIn row"> <div class="col"> You're signed in as <span id="currentUserName"></span>, and the new comment form is coming soon, I promise! </div> </div> {%- if comments_size > 0 -%} <div class="row"> {%- for comment in comments -%} <div class="col-md-1"> <img src="https://www.gravatar.com/avatar/{{comment.emailHash}}" alt="Profile image for {{comment.name}}" /> </div> <div class="col-md-11"> <strong>{{comment.name}}</strong> <small>{{comment.datetime}}</small><br /> {{comment.comment}} </div> {%- endfor -%} </div> {%- endif -%} <p> </p>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bfdotcom-theme-0.2.0 | _includes/comments.html |