wallabag/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/howto.html.twig

51 lines
2.7 KiB
Twig
Raw Normal View History

2015-08-07 19:22:43 +00:00
{% extends "WallabagCoreBundle::layout.html.twig" %}
2015-09-30 16:09:18 +00:00
{% block title %}{% trans %}howto{% endtrans %}{% endblock %}
2015-08-07 19:22:43 +00:00
{% block content %}
<div class="row">
<div class="col s12">
<div class="card-panel settings">
<div class="row">
<div class="div_tabs col s12">
<ul class="tabs">
<li class="tab col s3"><a class="active" href="#set1">{% trans %}Form{% endtrans %}</a></li>
<li class="tab col s3"><a href="#set2">{% trans %}Browser addons{% endtrans %}</a></li>
<li class="tab col s3"><a href="#set3">{% trans %}Mobile apps{% endtrans %}</a></li>
<li class="tab col s3"><a href="#set4">{% trans %}Bookmarklet{% endtrans %}</a></li>
</ul>
</div>
<div id="set1" class="col s12">
2015-08-12 06:22:30 +00:00
<a href="{{ path('new') }}">{% trans %}Thanks to this form{% endtrans %}</a>
2015-08-07 19:22:43 +00:00
</div>
<div id="set2" class="col s12">
<ul>
<li><a href="https://addons.mozilla.org/firefox/addon/wallabag/" target="_blank">{% trans %}Standard Firefox Add-On{% endtrans %}</a></li>
<li><a href="https://chrome.google.com/webstore/detail/wallabag/bepdcjnnkglfjehplaogpoonpffbdcdj" target="_blank">{% trans %}Chrome Extension{% endtrans %}</a></li>
</ul>
</div>
<div id="set3" class="col s12">
<ul>
2016-02-12 15:58:30 +00:00
<li>Android: <a href="https://f-droid.org/app/fr.gaulupeau.apps.InThePoche" target="_blank">via F-Droid</a> {% trans %} or {% endtrans %} <a href="https://play.google.com/store/apps/details?id=fr.gaulupeau.apps.InThePoche" target="_blank">via Google Play</a></li>
2015-08-07 19:22:43 +00:00
<li>iOS: <a href="https://itunes.apple.com/app/wallabag/id828331015?mt=8" target="_blank">{% trans %}download the application{% endtrans %}</a></li>
<li>Windows Phone: <a href="http://www.windowsphone.com/en-US/store/app/wallabag/d5226cf1-f422-4e00-996c-88e9c5233332" target="_blank">{% trans %}download the application{% endtrans %}</a></li>
</ul>
</div>
<div id="set4" class="col s12">
2015-10-07 16:08:51 +00:00
{% trans %}Drag &amp; drop this link to your bookmarks bar:{% endtrans %}
{% include 'WallabagCoreBundle::_bookmarklet.html.twig' %}
2015-08-07 19:22:43 +00:00
</div>
</div>
</div>
</div>
</div>
{% endblock %}