This commit is contained in:
parent
34b8ca9c3c
commit
b167569942
2 changed files with 14 additions and 17 deletions
3
main.go
3
main.go
|
@ -77,6 +77,9 @@ func main() {
|
|||
// Static files not in /static or /.well-known
|
||||
mux.HandleFunc("/robots.txt", buildHTTPFileReader(embed_robots_txt))
|
||||
mux.HandleFunc("/humans.txt", buildHTTPFileReader(embed_humans_txt))
|
||||
mux.HandleFunc("/8ztjw6bhc9.txt", func(w http.ResponseWriter, r *http.Request) {
|
||||
fmt.Fprint(w, "keke")
|
||||
})
|
||||
|
||||
server := http.Server{
|
||||
Addr: ":" + *portFlag,
|
||||
|
|
|
@ -37,24 +37,18 @@
|
|||
<th>Service</th>
|
||||
<th>Link/Username</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Fedi (woem)</td>
|
||||
<td>
|
||||
<a rel="me" href="https://woem.men/@mstar">https://woem.men/@mstar</a>
|
||||
</td>
|
||||
<tr>
|
||||
<td>Fedi (mkab, backup)</td>
|
||||
<td>
|
||||
<a rel="me" href="https://mk.absturztau.be/@mstar">https://mk.absturztau.be/@mstar</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Discord</td>
|
||||
<td>
|
||||
<p>m_star</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bluesky</td>
|
||||
<td>
|
||||
<a href="https://bsky.app/profile/mstar.dev"></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Pronouns page</td>
|
||||
<td>
|
||||
|
@ -94,9 +88,9 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<!-- Rickroll -->
|
||||
<td>Bluesky</td>
|
||||
<td>Fedi</td>
|
||||
<td>
|
||||
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">https://bsky.app/profile/mstar.dev</a>
|
||||
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">https://woem.men/@mstar</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -105,8 +99,8 @@
|
|||
<li><a href="https://linktr.ee/akijam">Fren Aki</a></li>
|
||||
</ul>
|
||||
<hr />
|
||||
<p>I'm also working on a Fediverse server, <a href="https://git.mstar.dev/mstar/linstrom">Linstrom</a></p>
|
||||
<br>
|
||||
<!--<p>I'm also working on a Fediverse server, <a href="https://git.mstar.dev/mstar/linstrom">Linstrom</a></p>-->
|
||||
<!--<br>-->
|
||||
<p>Todo: Add proper styling</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -114,7 +108,7 @@
|
|||
<p>Contact: <a href="mailto:me@mstar.dev">me@mstar.dev (<a
|
||||
href="/static/files/other/publickey.me@mstar.dev-27fcaabd3022acff023e6e2a053a2d9af0f03260.asc">Public PGP
|
||||
key</a>)</p>
|
||||
<p>Last updated: 30.12.2024</p>
|
||||
<p>Last updated: 16.01.2025</p>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
|
|
Loading…
Reference in a new issue