pleroma/priv/static/index.html
marcin mikołajczak 1d0b26c1cd prefer Pleroma assets
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-09-03 20:55:22 +02:00

73 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Welcome to pl</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover,user-scalable=no">
<style type="text/css">
:root {
--brand-color: #0482d8;
--background-color: #f2f2f2;
}
body {
background-color: var(--background-color);
font-family: 'Lato', sans-serif;
padding: 0;
margin: 0;
}
main {
max-width: 500px;
margin: 0 auto;
padding: 30px;
}
.logo {
width: 100%;
display: block;
}
h2 {
font-size: 1.5rem;
font-weight: normal;
line-height: 1.5;
}
p {
line-height: 1.5;
}
a {
color: var(--brand-color);
}
code {
display: block;
color: white;
background-color: black;
border-radius: 10px;
padding: 10px;
}
code.inline {
display: inline;
border-radius: 4px;
padding: 4px;
}
</style>
<!--server-generated-meta-->
</head>
<body>
<main>
<h2>Almost done...</h2>
<p>Congrats! 🎉 You've installed pl. Now you just need to install a frontend.</p>
<h2>Installing pl-fe</h2>
<p>To install <a href="https://github.com/mkljczk/pl-fe" target="_blank">pl-fe</a>, SSH into the server and download a .zip of the latest build:</p>
<code>curl -O http://pl.mkljczk.pl/pl-fe.zip</code>
<p>Then unpack it into the <code class="inline">instance</code> directory:</p>
<code>unzip pl-fe.zip -d /opt/pleroma/instance/static/</code>
<p><strong>That's it!</strong> Just refresh this page.</p>
</main>
</body>
</html>