A clean, Markdown-based publishing platform made for writers. Write together, and build a community. https://writefreely.org
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

47 行
2.0 KiB

  1. {{define "footer"}}
  2. <footer{{if not (or .SingleUser .WFModesty)}} class="contain-me"{{end}}>
  3. <hr />
  4. {{if or .SingleUser .WFModesty}}
  5. <nav>
  6. <a class="home" href="/">{{.SiteName}}</a>
  7. {{if not .SingleUser}}
  8. <a href="/about">about</a>
  9. {{if and .LocalTimeline .CanViewReader}}<a href="/read">reader</a>{{end}}
  10. {{if .Username}}<a href="https://writefreely.org/guide/{{.OfficialVersion}}" target="guide">writer's guide</a>{{end}}
  11. <a href="/contact">contact</a>
  12. <a href="/privacy">privacy</a>
  13. <p style="font-size: 0.9em">powered by <a href="https://writefreely.org">writefreely</a></p>
  14. {{else}}
  15. <a href="https://writefreely.org/guide/{{.OfficialVersion}}" target="guide">writer's guide</a>
  16. <a href="https://developers.write.as/" title="Build on WriteFreely with our open developer API.">developers</a>
  17. <a href="https://github.com/writefreely/writefreely">source code</a>
  18. <a href="https://writefreely.org">writefreely {{.Version}}</a>
  19. {{end}}
  20. </nav>
  21. {{else}}
  22. <div class="marketing-section">
  23. <div class="clearfix blurbs">
  24. <div class="half">
  25. <h3><a class="home" href="/">{{.SiteName}}</a></h3>
  26. <ul>
  27. <li><a href="/about">about</a></li>
  28. {{if and (and (not .SingleUser) .LocalTimeline) .CanViewReader}}<a href="/read">reader</a>{{end}}
  29. <li><a href="/contact">contact</a></li>
  30. <li><a href="/privacy">privacy</a></li>
  31. </ul>
  32. </div>
  33. <div class="half">
  34. <h3><a href="https://writefreely.org" style="color:#444;text-transform:lowercase;">WriteFreely</a></h3>
  35. <ul>
  36. <li><a href="https://writefreely.org/guide/{{.OfficialVersion}}" target="guide">writer's guide</a></li>
  37. <li><a href="https://developers.write.as/" title="Build on WriteFreely with our open developer API.">developers</a></li>
  38. <li><a href="https://github.com/writefreely/writefreely">source code</a></li>
  39. <li style="margin-top:0.8em">{{.Version}}</li>
  40. </ul>
  41. </div>
  42. </div>
  43. </div>
  44. {{end}}
  45. </footer>
  46. {{end}}