Oversight fixes + moved footer links to Home dropdown.
This commit is contained in:
parent
e44bfb45f5
commit
2909202df3
4 changed files with 9 additions and 25 deletions
|
@ -3,9 +3,9 @@
|
|||
text-align: center;
|
||||
font-size: .9em;
|
||||
line-height: 1.5em;
|
||||
margin-bottom: 1em;
|
||||
padding: 1em 0;
|
||||
|
||||
&__copyright__link {
|
||||
&__link {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
|
||||
|
@ -13,14 +13,4 @@
|
|||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
&__links__link {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
margin: 0 2px;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,6 +27,7 @@ body {
|
|||
|
||||
&__wrapper {
|
||||
max-width: @site-max-width;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
padding: 1px;
|
||||
flex: 1 0 auto;
|
||||
|
|
|
@ -18,8 +18,9 @@
|
|||
<a href="/" class="header__menu__link">Home</a>
|
||||
<ul class="header__submenu">
|
||||
<li class="header__submenu__item"><a href="/changelog.php" class="header__submenu__link">Changelog</a></li>
|
||||
<li class="header__submenu__item"><a href="/info.php?t=contact" class="header__submenu__link">Contact</a></li>
|
||||
<li class="header__submenu__item"><a href="/info.php?t=rules" class="header__submenu__link">Rules</a></li>
|
||||
{#<li class="header__submenu__item"><a href="/info.php?t=contact" class="header__submenu__link">Contact</a></li>
|
||||
<li class="header__submenu__item"><a href="/info.php?t=rules" class="header__submenu__link">Rules</a></li>#}
|
||||
<li class="header__submenu__item"><a href="https://twitter.com/flashiinet" class="header__submenu__link">Twitter</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="header__menu__item"><a href="/news.php" class="header__menu__link">News</a></li>
|
||||
|
|
|
@ -24,23 +24,15 @@
|
|||
<footer class="footer">
|
||||
{% autoescape false %}
|
||||
<div class="footer__copyright">
|
||||
{{ 'https://flash.moe'|html_link('Flashwave', 'footer__copyright__link') }} 2013-{{
|
||||
{{ 'https://flash.moe'|html_link('Flashwave', 'footer__link') }} 2013-{{
|
||||
''|date('Y') }} /
|
||||
{{ ('https://github.com/flashwave/misuzu/tree/' ~ git_branch())|html_link(git_branch(), 'footer__copyright__link') }}
|
||||
# {{ ('https://github.com/flashwave/misuzu/commit/' ~ git_commit_hash(true))|html_link(git_commit_hash(), 'footer__copyright__link') }}
|
||||
{{ ('https://github.com/flashwave/misuzu/tree/' ~ git_branch())|html_link(git_branch(), 'footer__link') }}
|
||||
# {{ ('https://github.com/flashwave/misuzu/commit/' ~ git_commit_hash(true))|html_link(git_commit_hash(), 'footer__link') }}
|
||||
{% if query_count is defined %}
|
||||
/ SQL Queries: {{ query_count|number_format }}
|
||||
/ Took: {{ app.timeSinceStart|number_format(5) }} seconds
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="footer__links">
|
||||
{{ '#'|html_link('Rules', 'footer__links__link') }} |
|
||||
{{ '#'|html_link('Contact', 'footer__links__link') }} |
|
||||
{{ '#'|html_link('Status', 'footer__links__link') }} |
|
||||
{{ '/changelog.php'|html_link('Changelog', 'footer__links__link') }} |
|
||||
{{ 'https://twitter.com/flashiinet'|html_link('Twitter', 'footer__links__link') }}
|
||||
</div>
|
||||
{% endautoescape %}
|
||||
</footer>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue