mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Add modified packages RSS feed to frontend
This commit is contained in:
parent
4330fe4f33
commit
8d9f20939c
3 changed files with 7 additions and 1 deletions
|
@ -556,6 +556,10 @@ h3 span.arrow {
|
|||
margin: -2em 0 0 0;
|
||||
}
|
||||
|
||||
#pkg-updates .rss-icon.latest {
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
#pkg-updates table {
|
||||
margin: 0;
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
<link rel='stylesheet' type='text/css' href='/css/aurweb.css' />
|
||||
<link rel='shortcut icon' href='/images/favicon.ico' />
|
||||
<link rel='alternate' type='application/rss+xml' title='Newest Packages RSS' href='<?= get_uri('/rss/'); ?>' />
|
||||
<link rel='alternate' type='application/rss+xml' title='Modified Packages RSS' href='<?= get_uri('/rss/modified/'); ?>' />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<?php if (isset($details['Description']) && !empty($details['Description'])): ?>
|
||||
<meta name="description" content="<?= htmlspecialchars($details['Description']) ?>" />
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<h3><?= __("Recent Updates") ?> <span class="more">(<a href="<?= get_uri('/packages/') ?>?SB=l&SO=d"><?= __('more') ?></a>)</span></h3>
|
||||
|
||||
<a href="<?= get_uri('/rss/') ?>" title="Arch Package Updates RSS Feed" class="rss-icon"><img src="/images/rss.svg" alt="RSS Feed" /></a>
|
||||
<a href="<?= get_uri('/rss/') ?>" title="AUR Latest Packages RSS Feed" class="rss-icon latest"><img src="/images/rss.svg" alt="RSS Feed" /></a>
|
||||
<a href="<?= get_uri('/rss/modified/') ?>" title="AUR Modified Packages RSS Feed" class="rss-icon"><img src="/images/rss.svg" alt="RSS Feed" /></a>
|
||||
|
||||
<table>
|
||||
<tbody>
|
||||
|
|
Loading…
Add table
Reference in a new issue