19 lines
		
	
	
		
			476 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			476 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "title" }} Guestbook View {{ end }}
 | |
| {{ define "main" }}
 | |
| <h1>Guestbook for {{ .Guestbook.SiteUrl }}</h1>
 | |
| <p>
 | |
|     <a href="/guestbooks/{{ shortIdToSlug .Guestbook.ShortId }}/comments/create">New Comment</a>
 | |
| </p>
 | |
| {{ range .Comments }}
 | |
|     <div>
 | |
|         <strong> {{ .AuthorName }} </strong>
 | |
|         {{ .Created.Local.Format "01-02-2006 03:04PM" }}
 | |
|         <p>
 | |
|             {{ .CommentText }}
 | |
|         </p>
 | |
|     </div>
 | |
| {{ else }}
 | |
| <p>No comments yet!</p>
 | |
| {{ end }}
 | |
| {{ end }}
 |