gitea-feed-workaround/extra_tabs.tmpl
Sulaiman AlIbrahim 5408ab8a31 Version 0.5: Better support for caching and "smart" http servers.
- Support "smart" http servers by not touching feed files unless
  necessary.
- Check and report missing dependencies before
  `./gitea-feed-workaround.sh` starts.
- Added copyright notice to primary files
2020-03-01 20:58:22 +03:00

37 lines
1.6 KiB
Cheetah

<!--
Copyright © 2020 Kutometa SPC, Kuwait
All rights reserved. Unless explicitly stated otherwise, this
program is provided AS IS with NO WARRANTY OF ANY KIND,
INCLUDING THE WARRANTY OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE.
See accompanying documentation for more details.
www.ka.com.kw
---------------------
This file adds a "feeds" menu to a repositories top navigation
bar. The contents of this file should be appended to the end of
custom/templates/custom/extra_tabs.tmpl. See gitea's
documentation about customization for more information.
By default, the feeds menu is desinged to only show for public
repositories (REPOSITORY_VISIBILITY="PUBLIC"). If you want it
show on all pages or only for private repositories, modify the
.IsPrivate conditional block. See go's documentation for more
information.
-->
{{ with .Repository }}
{{ if not .IsPrivate }}
<div class="ui left dropdown item">
<i class="octicon octicon-rss"></i>Feeds
<div class="menu">
<a class="item" href="{{AppSubUrl}}/_feeds/{{.Owner.Name}}/{{.Name}}/commits.rss">Commits</a>
<a class="item" href="{{AppSubUrl}}/_feeds/{{.Owner.Name}}/{{.Name}}/releases.rss">Releases</a>
<a class="item" href="{{AppSubUrl}}/_feeds/{{.Owner.Name}}/{{.Name}}/issues.rss">Issues</a>
</div>
</div>
{{ end }}
{{ end }}