github.com/EngineerKamesh/gofullstack@v0.0.0-20180609171605-d41341d7d4ee/volume3/section5/gopherface/templates/partials/feed_posts.html (about)

     1  {{if not . }}
     2  No posts are available.
     3  {{else}}
     4  {{range .}}
     5  <div class="smpostContainer">
     6  
     7  	<div class="authorImage">
     8  	<img width="96" src="{{.ProfileImagePath}}">
     9  	</div>
    10  
    11  	<div class="caption">
    12  		{{.Caption}}
    13  	</div>
    14  
    15  	<div class="author">
    16  		<br/>
    17  		<span class="createdby"><a href="/profile/{{.Username}}">@{{.Username}}</a></span>
    18  		<span class="authorMood"> {{.AuthorMoodEmoji}}</span><br/>
    19  		<span class="creationtime">{{.TimeCreated}}</span>
    20  	</div>
    21  
    22  	<div class="msgBody">
    23  		{{.MessageBody}}
    24  	</div>
    25  
    26  </div>
    27  {{end}}
    28  {{end}}