diff options
author | 2016-08-07 16:08:32 +0200 | |
---|---|---|
committer | 2016-08-07 16:08:32 +0200 | |
commit | bb49aef187f83623c81b170801d13c6db35fba37 (patch) | |
tree | abb75df3c4a8e3eb420dcb26a6019e6bd6d3bc04 /formats | |
parent | 73dc0efac6b4de69d9cc50495e6b7f56e78b4f20 (diff) | |
parent | c0b607c841684eefc85e2bac457e7c6c0e702832 (diff) | |
download | rss-bridge-bb49aef187f83623c81b170801d13c6db35fba37.tar.gz rss-bridge-bb49aef187f83623c81b170801d13c6db35fba37.tar.zst rss-bridge-bb49aef187f83623c81b170801d13c6db35fba37.zip |
Merge pull request #339 from LogMANOriginal/ImproveNavigation
Improve navigation
Diffstat (limited to 'formats')
-rw-r--r-- | formats/HtmlFormat.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/formats/HtmlFormat.php b/formats/HtmlFormat.php index 9b426948..20d49014 100644 --- a/formats/HtmlFormat.php +++ b/formats/HtmlFormat.php @@ -45,8 +45,8 @@ EOD; <meta name="robots" content="noindex, follow"> </head> <body> - <h1 class="pagetitle">{$title}</h1> - <div class="buttons"><a href="./"><button class="backbutton">← back to rss-bridge</button></a><a href="./?{$atomquery}"><button class="rss-feed">RSS feed</button></a></div> + <h1 class="pagetitle"><a href="{$uri}" target="_blank">{$title}</a></h1> + <div class="buttons"><a href="./#bridge-{$_GET['bridge']}"><button class="backbutton">← back to rss-bridge</button></a><a href="./?{$atomquery}"><button class="rss-feed">RSS feed</button></a></div> {$entries} </body> </html> |