This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / knot2 / crates / knot-server / src / homepage.html
747 B 21 lines
1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <meta charset="utf-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 <title>knot</title> 7 <style> 8 :root { color-scheme: light dark; } 9 body { font-family: system-ui, sans-serif; } 10 .callout { font-weight: 600; } 11 </style> 12 </head> 13 <body> 14 <h1>Baby's first Knot</h1> 15 <p>This is a Knot server: a git host on a network of federated servers that make up <a href="https://tangled.org">Tangled</a>.</p> 16 <p class="callout"> 17 Operator! Please customize this page! It's your time to shine! Something unique? Something creative? 18 We made it easy using the <code>homepage.path</code> in the knot config. 19 </p> 20 </body> 21</html>