0
This repository has been archived on 2025-04-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
plugins.maubot.xyz/layouts/index.html
William Kray ed5c696655 Add basic searchbar (#5)
Co-authored-by: Tulir Asokan <tulir@maunium.net>
2023-06-26 22:07:01 +03:00

40 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Maubot Plugins</title>
<link rel="icon" href="/favicon.png" type="image/png"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="A list of maubot plugins."/>
<meta property="og:title" content="Maubot Plugins"/>
<meta property="og:description" content="A list of maubot plugins."/>
<meta property="og:url" content="https://plugins.maubot.xyz/"/>
<meta property="og:image" content="/favicon.png"/>
<link rel="stylesheet" type="text/css" href="/index.css">
</head>
<body>
<header>
<h1>Maubot Plugins</h1>
<p>
To add your own plugins, send a pull request to
<a href="https://github.com/maubot/plugins.maubot.xyz">github.com/maubot/plugins.maubot.xyz</a>
</p>
<input class="search" type="text" id="search-input" placeholder="Search..." onkeyup="searchPlugins()">
</header>
<main>
{{ range index $.Site.Data.plugins.official }}
{{ partial "plugin.html" . }}
{{ end }}
{{ range index $.Site.Data.plugins.thirdparty }}
{{ partial "plugin.html" . }}
{{ end }}
</main>
<footer>
<a href="https://github.com/maubot/plugins">Website source</a>
- Licensed under <a href="https://mau.fi/LICENSE">CC-BY-SA-4.0</a>
</footer>
<script type="module" src="/index.js"></script>
</body>
</html>