bookmarklet.phtml 965 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. /** @var FreshRSS_View $this */
  4. $this->partial('aside_subscription');
  5. ?>
  6. <main class="post">
  7. <div class="link-back-wrapper">
  8. <a class="link-back" href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a>
  9. </div>
  10. <h1><?= _t('sub.menu.subscription_tools') ?></h1>
  11. <h2><?= _t('sub.bookmarklet.title') ?></h2>
  12. <p><a class="btn btn-important"
  13. href="javascript:(function(){var%20url%20=%20location.href;var%20otherWindow=window.open('about:blank','_blank');otherWindow.opener=null;otherWindow.location='<?=
  14. Minz_Url::display(array('c' => 'feed', 'a' => 'add'), 'html', true) ?>&amp;url_rss='+encodeURIComponent(url);})();"><?= _t('sub.bookmarklet.label') ?></a></p>
  15. <?= _t('sub.bookmarklet.documentation') ?>
  16. <h2><?= _t('sub.api.title') ?></h2>
  17. <p><?= _t('sub.api.documentation') ?></p>
  18. <kbd><?= Minz_Url::display(array('c' => 'feed', 'a' => 'add'), 'html', true) ?>&amp;url_rss=%s</kbd>
  19. </main>