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;
|
text-align: center;
|
||||||
font-size: .9em;
|
font-size: .9em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
margin-bottom: 1em;
|
padding: 1em 0;
|
||||||
|
|
||||||
&__copyright__link {
|
&__link {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
|
@ -13,14 +13,4 @@
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__links__link {
|
|
||||||
color: inherit;
|
|
||||||
text-decoration: none;
|
|
||||||
margin: 0 2px;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,7 @@ body {
|
||||||
|
|
||||||
&__wrapper {
|
&__wrapper {
|
||||||
max-width: @site-max-width;
|
max-width: @site-max-width;
|
||||||
|
width: 100%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
flex: 1 0 auto;
|
flex: 1 0 auto;
|
||||||
|
|
|
@ -18,8 +18,9 @@
|
||||||
<a href="/" class="header__menu__link">Home</a>
|
<a href="/" class="header__menu__link">Home</a>
|
||||||
<ul class="header__submenu">
|
<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="/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=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=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>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="header__menu__item"><a href="/news.php" class="header__menu__link">News</a></li>
|
<li class="header__menu__item"><a href="/news.php" class="header__menu__link">News</a></li>
|
||||||
|
|
|
@ -24,23 +24,15 @@
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
{% autoescape false %}
|
{% autoescape false %}
|
||||||
<div class="footer__copyright">
|
<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') }} /
|
''|date('Y') }} /
|
||||||
{{ ('https://github.com/flashwave/misuzu/tree/' ~ git_branch())|html_link(git_branch(), '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__copyright__link') }}
|
# {{ ('https://github.com/flashwave/misuzu/commit/' ~ git_commit_hash(true))|html_link(git_commit_hash(), 'footer__link') }}
|
||||||
{% if query_count is defined %}
|
{% if query_count is defined %}
|
||||||
/ SQL Queries: {{ query_count|number_format }}
|
/ SQL Queries: {{ query_count|number_format }}
|
||||||
/ Took: {{ app.timeSinceStart|number_format(5) }} seconds
|
/ Took: {{ app.timeSinceStart|number_format(5) }} seconds
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</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 %}
|
{% endautoescape %}
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue