diff options
| author | 2021-09-11 18:22:26 +0200 | |
|---|---|---|
| committer | 2021-09-11 18:22:26 +0200 | |
| commit | 9712e4d888420a348c10157b2d3293848c02fde8 (patch) | |
| tree | b81fe8fcd5d8f768e0a42c7d94643b808dddab14 /app/views/importExport/index.phtml | |
| parent | 42a9383fe6dc4765ec4267e44913366206162116 (diff) | |
Headline structure improvement (#3830)
* header: h1 deleted - full logo included
* template: config - display
* WIP
* shortcut configs. added fieldset. do not display the border by default
* system.phtml
* subscription: add feed or category
* wip
* wip
* Update bookmarklet.phtml
* Update archiving.phtml
* Update queries.phtml
* Update profile.phtml
* Update manage.phtml
* auth+update
* Update template.rtl.css
* fixed FreshRSS logo (Theme: Mapco)
* Update mapco.rtl.css
* Update _layout.scss
* fixed FreshRSS logo (theme: Dark)
* fix: FreshRSS logo (Theme: BlueLagoon)
* fix: FreshRSS logo (Theme: Ansum)
* fixed: FreshRSS logo (Theme: Alternative Dark)
* fix: FreshRSS logo (Theme: Pafat)
* fix: FreshRSS logo (Theme: Screwdriver)
* fix: FreshRSS logo (theme: Swage)
* Minor lint
* little fix: FreshRSS logo (Theme: Origine)
* Fix: FreshRSS logo (Theme: Origine Compact)
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/views/importExport/index.phtml')
| -rw-r--r-- | app/views/importExport/index.phtml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/views/importExport/index.phtml b/app/views/importExport/index.phtml index c16f4272f..9e852996f 100644 --- a/app/views/importExport/index.phtml +++ b/app/views/importExport/index.phtml @@ -5,9 +5,11 @@ <a class="link-back" href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a> </div> + <h1><?= _t('sub.menu.import_export') ?></h1> + + <h2><?= _t('sub.import_export.import') ?></h2> <form method="post" action="<?= _url('importExport', 'import') ?>" enctype="multipart/form-data"> <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" /> - <legend><?= _t('sub.import_export.import') ?></legend> <div class="form-group"> <label class="group-name" for="file"> <?= extension_loaded('zip') ? _t('sub.import_export.file_to_import') : _t('sub.import_export.file_to_import_no_zip') ?> @@ -24,10 +26,10 @@ </div> </form> + <h2><?= _t('sub.import_export.export') ?></h2> <?php if (count($this->feeds) > 0) { ?> <form method="post" action="<?= _url('importExport', 'export') ?>"> <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" /> - <legend><?= _t('sub.import_export.export') ?></legend> <div class="form-group"> <div class="group-controls"> <label class="checkbox" for="export_opml"> |
