true init

This commit is contained in:
Nimble 2024-01-02 17:05:26 -06:00
parent ef775cee5e
commit e9216c81bc
8 changed files with 106 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

91
Servicios/index.html Normal file
View file

@ -0,0 +1,91 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Los servicios del sitio.">
<meta name="author" content="Sarvo">
<meta property="og:title" content="Servicios en Novoa">
<meta property="og:type" content="website">
<meta property="og:url" content="https://novoa.nagoya">
<meta property="og:description" content="NovoaS">
<meta property="og:image" content="image.png">
<title>Novoa</title>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<style>
h1 {text-align: center;
color: green;
}
p {text-align: center;}
div {text-align: center;}
body {background-color: black;}
ul {
text-align: center;
border-left: 25px solid blue;
background-color: black;
list-style-type: cjk-ideographic;
list-style-image: url('abstract-shape-mini.png');
padding: 10px 3px;
color: white;
}
a:link {
color: green;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: red;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: white;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
#handles {
color: white;
}
</style>
</head>
<body>
<main>
<h1>Lista de servicios</h1>
<ul>
<a href="https://novoa.nagoya/"><li>Misskey: Ventana al Fediverso</li></a>
<a href="https://xmpp.novoa.nagoya/"><li>Movim: Cliente XMPP</li></a>
<a href="https://novoa.nagoya:34371/register_web/"><li>Registro en el servidor XMPP</li></a>
<li>Mumble ↣ https://novoa.nagoya:64738</li>
<a href="https://arroyo.novoa.nagoya/"><li>Owncast - Contactame en XMPP</li></a>
<a href="https://kinema.novoa.nagoya/"><li>Kinoplex - Contactame en XMPP</li></a>
<li>Wireguard (VPN) - Contactame en XMPP</li>
<li>Unbound - Resolvedor DNS pero esta medio roto</li>
<a href="https://arca.novoa.nagoya/"><li>Servicio de almacenamiento persistente</li></a>
<a href="https://flux.novoa.nagoya/"><li>Servidor Miniflux para RSS</li></a>
<a href="https://gemini.novoa.nagoya/"><li>Blog en geminispace ahora aquí</a> - En construcción</li>
<li>Y dos más</li>
</ul>
<p id="handles">XMPP: <a href="xmpp:sarvo@novoa.nagoya">sarvo@novoa.nagoya</a></p>
<p id="handles">Fediverso: <a href="https://novoa.nagoya/@sarvo">@sarvo@novoa.nagoya</a></p>
</main>
<script src="index.js"></script>
</body>
</html>

6
archetypes/default.md Normal file
View file

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

3
config.yaml Normal file
View file

@ -0,0 +1,3 @@
baseURL: http://example.org/
languageCode: en-us
title: My New Hugo Site

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module git.froth.zone/ren/Novoa
go 1.19

0
go.sum Normal file
View file

3
init.sh Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
git config user.email "varun@fedora.email"
git config user.name "ren"