12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <style>
- .footer {
- margin-top: -30px;
- height: 100px;
- background-color:#fff;
- padding:16px 0 10 10;
- border:1px solid #ddd;
- border-radius:5px;
- }
- p.heading a{
- color: #aaa;
- text-decoration: none;
- border-bottom: 1px dotted #999;
- }
- .pipe {
- margin: 0 5px;
- color: #ccc;
- }
- </style>
- <div class="footer col-md-offset-1 col-md-10">
- <div class="pull-right" style="margin-right:30px;margin-top:10px">
- <p class="heading text-right">
- <a href="{{ url_for('forums.help')}}">{{ _('Help')}}</a>
- <span class="pipe"> | </span>
- <a href="{{ url_for('forums.about')}}">{{ _('About')}}</a>
- <span class="pipe"> | </span>
- <a href="{{ url_for('forums.contact')}}">{{ _('Contact me')}}</a>
- <span class="pipe"> | </span>
- <a href="https://github.com/honmaple/maple-bbs" target="_blank">GitHub</a>
- </p>
- <p class="text-right hidden-xs" style="font-size:12px;color:#777">
- {% set footer_count = g.get_online %}
- <span>{{ _('Now users online:')}}<strong>{{ footer_count[0] }}</strong></span>
- <span style="margin-left:10px">{{ _('Registered users online:') }}<strong>{{ footer_count[1] }}</strong></span>
- <span style="margin-left:10px">{{ _('Guests online:')}}<strong>{{ footer_count[2] }}</strong></span>
- </p>
- <p class="text-right hidden-xs" style="font-size:12px;color:#777">
- <span>{{ show_time() }}</span>
- <span style="margin-left:10px">{{ _('Highest online:')}}<strong>{{ footer_count[3] }}</strong></span>
- <span style="margin-left:10px">{{ _('Time of highest online:')}}<strong>{{ footer_count[4] }}</strong></span>
- </p>
- </div>
- <blockquote>
- <p style="font-size:14px;">{{ _(SITE['description']) }}</p>
- <footer>
- <span> Copyright © 2015-2016 honmaple.</span>
- </footer>
- </blockquote>
- </div>
|