footer.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <style>
  2. .footer {
  3. margin-top: -30px;
  4. height: 100px;
  5. background-color:#fff;
  6. padding:16 0 10 10;
  7. border:1px solid #ddd;
  8. border-radius:5px;
  9. }
  10. p.aaaa 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;">
  22. <p class="aaaa 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. <span>{{ _('Now users online:')}}<strong>{{ 'all_counts' | get_online_users }}</strong></span>
  33. <span style="margin-left:10px">{{ _('Registered users online:') }}<strong>{{ 'sign_counts' | get_online_users }}</strong></span>
  34. <span style="margin-left:10px">{{ _('Guests online:')}}<strong>{{ 'counts' | get_online_users }}</strong></span>
  35. </p>
  36. <p class="text-right hidden-xs" style="font-size:12px;color:#777">
  37. <span>{{ show_time() }}</span>
  38. <span style="margin-left:10px">{{ _('Highest online:')}}<strong>{{ 'high' | get_online_users }}</strong></span>
  39. <span style="margin-left:10px">{{ _('Time of highest online:')}}<strong>{{ 'high_time' | get_online_users }}</strong></span>
  40. </p>
  41. </div>
  42. <blockquote style="font-size:13px;">
  43. <p style="font-size:14px;">{{ _(Title.description) }}</p>
  44. <footer>
  45. <span> Copyright © 2015-2016 honmaple.</span>
  46. </footer>
  47. </blockquote>
  48. </div>