footer.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <style>
  2. .footer {
  3. margin-top: -30px;
  4. height: 100px;
  5. background-color:#fff;
  6. padding:16px 0 10 10;
  7. border:1px solid #ddd;
  8. border-radius:5px;
  9. }
  10. p.heading a{
  11. color: #aaa;
  12. text-decoration: none;
  13. border-bottom: 1px dotted #999;
  14. }
  15. .pipe {
  16. margin: 0 5px;
  17. color: #ccc;
  18. }
  19. </style>
  20. <div class="footer col-md-offset-1 col-md-10">
  21. <div class="pull-right" style="margin-right:30px;margin-top:10px">
  22. <p class="heading text-right">
  23. <a href="{{ url_for('forums.help')}}">{{ _('Help')}}</a>
  24. <span class="pipe"> | </span>
  25. <a href="{{ url_for('forums.about')}}">{{ _('About')}}</a>
  26. <span class="pipe"> | </span>
  27. <a href="{{ url_for('forums.contact')}}">{{ _('Contact me')}}</a>
  28. <span class="pipe"> | </span>
  29. <a href="https://github.com/honmaple/maple-bbs" target="_blank">GitHub</a>
  30. </p>
  31. <p class="text-right hidden-xs" style="font-size:12px;color:#777">
  32. {% set footer_count = g.get_online %}
  33. <span>{{ _('Now users online:')}}<strong>{{ footer_count[0] }}</strong></span>
  34. <span style="margin-left:10px">{{ _('Registered users online:') }}<strong>{{ footer_count[1] }}</strong></span>
  35. <span style="margin-left:10px">{{ _('Guests online:')}}<strong>{{ footer_count[2] }}</strong></span>
  36. </p>
  37. <p class="text-right hidden-xs" style="font-size:12px;color:#777">
  38. <span>{{ show_time() }}</span>
  39. <span style="margin-left:10px">{{ _('Highest online:')}}<strong>{{ footer_count[3] }}</strong></span>
  40. <span style="margin-left:10px">{{ _('Time of highest online:')}}<strong>{{ footer_count[4] }}</strong></span>
  41. </p>
  42. </div>
  43. <blockquote>
  44. <p style="font-size:14px;">{{ _(SITE['description']) }}</p>
  45. <footer>
  46. <span> Copyright © 2015-2016 honmaple.</span>
  47. </footer>
  48. </blockquote>
  49. </div>