A clean, Markdown-based publishing platform made for writers. Write together, and build a community. https://writefreely.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

64 lines
1.5 KiB

  1. {{define "stats"}}
  2. {{template "header" .}}
  3. <style>
  4. table.classy th { text-align: left }
  5. table.classy th.num { text-align: right }
  6. td + td {
  7. padding-left: 0.5em;
  8. padding-right: 0.5em;
  9. }
  10. td.num {
  11. text-align: right;
  12. }
  13. table.classy.export a { text-transform: inherit; }
  14. td.none {
  15. font-style: italic;
  16. }
  17. </style>
  18. <div class="content-container snug">
  19. {{if .Silenced}}
  20. {{template "user-silenced"}}
  21. {{end}}
  22. {{template "collection-breadcrumbs" .}}
  23. <h1 id="posts-header">Stats</h1>
  24. {{if .Collection}}
  25. {{template "collection-nav" (dict "Alias" .Collection.Alias "Path" .Path "SingleUser" .SingleUser)}}
  26. {{end}}
  27. <p>Stats for all time.</p>
  28. {{if .Federation}}
  29. <h3>Fediverse stats</h3>
  30. <table id="fediverse" class="classy export">
  31. <tr>
  32. <th>Followers</th>
  33. </tr>
  34. <tr>
  35. <td>{{.APFollowers}}</td>
  36. </tr>
  37. </table>
  38. {{end}}
  39. <h3>Top {{len .TopPosts}} posts</h3>
  40. <table class="classy export">
  41. <tr>
  42. <th>Post</th>
  43. {{if not .Collection}}<th>Blog</th>{{end}}
  44. <th class="num">Total Views</th>
  45. </tr>
  46. {{range .TopPosts}}<tr>
  47. <td style="word-break: break-all;"><a href="{{if .Collection}}{{.Collection.CanonicalURL}}{{.Slug.String}}{{else}}/{{.ID}}{{end}}">{{if ne .Title.String ""}}{{.Title.String}}{{else}}<em>{{.ID}}</em>{{end}}</a></td>
  48. {{ if not $.Collection }}<td>{{if .Collection}}<a href="{{.Collection.CanonicalURL}}">{{.Collection.Title}}</a>{{else}}<em>Draft</em>{{end}}</td>{{ end }}
  49. <td class="num">{{.ViewCount}}</td>
  50. </tr>{{end}}
  51. </table>
  52. </div>
  53. {{template "footer" .}}
  54. {{end}}