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
Tulir Asokan 8cffc38a28 Remove footer
The repo link is already in the header
2023-06-26 22:12:18 +03:00

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>