This repository was archived by the owner on Dec 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (40 loc) · 1.68 KB
/
index.html
File metadata and controls
45 lines (40 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
layout: default
---
<div class="home">
<div class="warning">
This site is no longer maintained and will soon be deleted completely.
The list of community plugins is now managed on a Wiki page in the gitbucket repository:
<a href="https://github.com/gitbucket/gitbucket/wiki/Community-Plugins">https://github.com/gitbucket/gitbucket/wiki/Community-Plugins</a>
</div>
<h1 class="page-heading">This is the community site for all the public <a href="https://github.com/gitbucket/gitbucket">GitBucket</a> plugins.</h1>
<h1 class="page-heading">Available Plugins:</h1>
<p class="separator"/>
<ul class="plugin-list">
{% for category in site.data.plugins %}
<h2 id="{{ category.id }}" class="category-title">{{ category.name }}</h2>
{% for plugin in category.plugins %}
<li>
<h2>
<a class="post-link{% if plugin.distributed %} distributed{% endif %}" href="{{ plugin.url }}"><span class="{{ plugin.icon }}"></span>{{ plugin.name }}</a>
</h2>
<p>{{ plugin.description }}</p>
</li>
{% endfor %}
{% endfor %}
</ul>
<p class="separator"/>
<p>Your plugin is not listed here? You want to move your plugin under the organization? Please open a <a href="https://github.com/gitbucket-plugins/gitbucket-plugins.github.io/issues">ticket/issue</a> to reference your demand.</p>
</div>
<script>
window.onscroll = function() {myFunction()};
var navbar = document.getElementById("navbar");
var sticky = navbar.offsetTop;
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
</script>