37 lines
1.2 KiB
HTML
37 lines
1.2 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>
|
|
|
|
<script type="module" src="/index.js"></script>
|
|
</body>
|
|
</html>
|