github.com/bitcubate/cryptojournal@v1.2.5-0.20171102134152-f578b3d788ab/src/users/views/mail/digest.html.got (about) 1 <html> 2 <head> 3 <title>Crypto Journal Weekly Digest [Test]</title> 4 </head> 5 <body> 6 <article> 7 <h3>Crypto Journal Weekly Digest</h3> 8 9 <h4>Popular Stories</h4> 10 {{ range .stories }} 11 <div class="story"> 12 <h3><a href="https://cryptojournal.cf/{{.URLShow}}">{{.Name}}</a></h3> 13 <p><a href="{{.DestinationURL}}" class="domain">{{ .Domain }}</a></p> 14 <p>{{ sanitize .Summary}}</p> 15 <ul class="tags"> 16 {{ range .Tags }} 17 <li style="display:inline;list-style:none;"><a href="https://cryptojournal.cf/stories?q=%23{{.}}">{{.}}</a></li> 18 {{ end }} 19 </ul> 20 </div> 21 {{ end }} 22 23 <h4>Jobs</h4> 24 {{ range .jobs }} 25 <div class="job story"> 26 <h3><a href="https://cryptojournal.cf/{{.URLShow}}">{{.Name}}</a></h3> 27 </div> 28 {{ end }} 29 30 </article> 31 <footer> 32 <p>Sent from <a href="https://cryptojournal.cf">cryptojournal.cf</a></p> 33 </footer> 34 </body> 35 </html>