52 lines
2.6 KiB
Plaintext
52 lines
2.6 KiB
Plaintext
<%# Canopy - The next generation of stoner streaming software
|
|
Copyright (C) 2024-2025 Rainbownapkin and the TTN Community
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. %>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<%- include('partial/styles', {instance, user}); %>
|
|
<%- include('partial/csrfToken', {csrfToken}); %>
|
|
<link rel="stylesheet" type="text/css" href="css/about.css">
|
|
<title><%= instance %> - about</title>
|
|
</head>
|
|
<body>
|
|
<%- include('partial/navbar', {user}); %>
|
|
<div id="about-div">
|
|
<h1>About <%= instance %></h1>
|
|
<div class="dynamic-container" id="about-text">
|
|
<h2>About <%= instance %></h2>
|
|
<%# It's not XSS if the text came from the config made by the server admin. If you can't trust that, you're already fucked.%>
|
|
<p><%- aboutText %></p>
|
|
<h2>About Canopy</h2>
|
|
<p>Canopy is the software behind <%= instance %>. Originally written by rainbownapkin for the founding instance,
|
|
<a href="https://ourfore.st">ourfore.st</a>. Ourfore.st was originally a cytube instance, set up after the 2021
|
|
shutdown of TTN, a movie watching/weed smoking community related to the <a href="https://reddit.com/r/trees">r/trees</a>
|
|
subreddit.
|
|
<br>
|
|
<br>
|
|
After a years of service, thousands of lines worth of stapled on modifications, the shutdown of sister sites,
|
|
it was decided that the original cytube fork, fore.st, had been run past it's prime. In summer/fall 2024, work began on a
|
|
replacement. The resulting software became <a href="https://git.ourfore.st/rainbownapkin/canopy">Canopy</a>, which was
|
|
first used to run the ourfore.st instance in late 2025.</p>
|
|
<br>
|
|
<h2>Canopy Ver: <%= version %></h2>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<footer>
|
|
<%- include('partial/scripts', {user}); %>
|
|
</footer>
|
|
</html>
|