mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-19 20:16:18 +00:00
Merge pull request #2287 from wallabag/remove-footer
Remove footer part
This commit is contained in:
commit
c6b68dc1df
5 changed files with 9 additions and 74 deletions
|
@ -174,7 +174,7 @@ div.pagination ul .next.disabled {
|
||||||
|
|
||||||
footer.page-footer {
|
footer.page-footer {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
padding-top: 10px;
|
padding-top: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer .row {
|
footer .row {
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace Wallabag\CoreBundle\Controller;
|
|
||||||
|
|
||||||
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
||||||
|
|
||||||
class FooterController extends Controller
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Display the footer.
|
|
||||||
*
|
|
||||||
* @return \Symfony\Component\HttpFoundation\Response
|
|
||||||
*/
|
|
||||||
public function indexAction()
|
|
||||||
{
|
|
||||||
$addonsUrl = $this->container->getParameter('addons_url');
|
|
||||||
$socialsUrl = $this->container->getParameter('socials_url');
|
|
||||||
|
|
||||||
return $this->render(
|
|
||||||
'WallabagCoreBundle::footer.html.twig',
|
|
||||||
[
|
|
||||||
'addonsUrl' => $addonsUrl,
|
|
||||||
'socialsUrl' => $socialsUrl,
|
|
||||||
]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -6,7 +6,3 @@ parameters:
|
||||||
google_play: https://play.google.com/store/apps/details?id=fr.gaulupeau.apps.InThePoche
|
google_play: https://play.google.com/store/apps/details?id=fr.gaulupeau.apps.InThePoche
|
||||||
ios: https://itunes.apple.com/app/wallabag/id828331015?mt=8
|
ios: https://itunes.apple.com/app/wallabag/id828331015?mt=8
|
||||||
windows: https://www.microsoft.com/store/apps/wallabag/9nblggh11646
|
windows: https://www.microsoft.com/store/apps/wallabag/9nblggh11646
|
||||||
socials_url:
|
|
||||||
twitter: https://twitter.com/wallabagapp
|
|
||||||
google_plus: https://plus.google.com/+WallabagOrg/posts
|
|
||||||
facebook: https://facebook.com/Wallabag
|
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
<footer class="page-footer cyan darken-2">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col l6 s12">
|
|
||||||
<h5 class="white-text">{{ 'footer.wallabag.elsewhere'|trans }}</h5>
|
|
||||||
<p class="grey-text text-lighten-4">
|
|
||||||
<a target="_blank" class="grey-text text-lighten-3" href="{{ addonsUrl.google_play }}" title="Android">
|
|
||||||
<span class="icon-android"></span>
|
|
||||||
</a>
|
|
||||||
<a target="_blank" class="grey-text text-lighten-3" href="{{ addonsUrl.ios }}" title="iOS">
|
|
||||||
<span class="icon-apple"></span>
|
|
||||||
</a>
|
|
||||||
<a target="_blank" class="grey-text text-lighten-3" href="{{ addonsUrl.firefox }}" title="Firefox">
|
|
||||||
<span class="icon-firefox"></span>
|
|
||||||
</a>
|
|
||||||
<a target="_blank" class="grey-text text-lighten-3" href="{{ addonsUrl.chrome }}" title="Chrome">
|
|
||||||
<span class="icon-chrome"></span>
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="col l4 offset-l2 s12">
|
|
||||||
<h5 class="white-text">{{ 'footer.wallabag.social'|trans }}</h5>
|
|
||||||
<a target="_blank" class="grey-text text-lighten-3" href="{{ socialsUrl.twitter }}" title="Twitter">
|
|
||||||
<span class="icon-twitter"></span>
|
|
||||||
</a>
|
|
||||||
<a target="_blank" class="grey-text text-lighten-3" href="{{ socialsUrl.google_plus }}" title="Google+">
|
|
||||||
<span class="icon-google-plus2"></span>
|
|
||||||
</a>
|
|
||||||
<a target="_blank" class="grey-text text-lighten-3" href="{{ socialsUrl.facebook }}" title="Facebook">
|
|
||||||
<span class="icon-facebook2"></span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="footer-copyright">
|
|
||||||
<div class="container">
|
|
||||||
<p>{{ 'footer.wallabag.powered_by'|trans }} <a target="_blank" href="https://wallabag.org" class="grey-text text-lighten-4">wallabag</a></p>
|
|
||||||
<a class="grey-text text-lighten-4 right" href="{{ path('about') }}">{{ 'footer.wallabag.about'|trans }}</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
|
@ -117,5 +117,12 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block footer %}
|
{% block footer %}
|
||||||
{{ render(controller("WallabagCoreBundle:Footer:index")) }}
|
<footer class="page-footer cyan darken-2">
|
||||||
|
<div class="footer-copyright">
|
||||||
|
<div class="container">
|
||||||
|
<p>{{ 'footer.wallabag.powered_by'|trans }} <a target="_blank" href="https://wallabag.org" class="grey-text text-lighten-4">wallabag</a></p>
|
||||||
|
<a class="grey-text text-lighten-4 right" href="{{ path('about') }}">{{ 'footer.wallabag.about'|trans }}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in a new issue