footer.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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:13px;">
  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:13px;">
  37. <span style="margin-left:10px">{{ _('Highest online:')}}<strong>{{ 'high' | get_online_users }}</strong></span>
  38. <span style="margin-left:10px">{{ _('Time of highest online:')}}<strong>{{ 'high_time' | get_online_users }}</strong></span>
  39. </p>
  40. </div>
  41. <blockquote style="font-size:13px;">
  42. <p style="font-size:14px;">{{ Title.description }}</p>
  43. <footer> <span> Copyright © 2015-2016 honmaple.</span></footer>
  44. </blockquote>
  45. </div>