bookmarklet.phtml 807 B

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