true init
This commit is contained in:
parent
ef775cee5e
commit
e9216c81bc
8 changed files with 106 additions and 0 deletions
BIN
Servicios/abstract-shape-mini.png
Normal file
BIN
Servicios/abstract-shape-mini.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
BIN
Servicios/abstract-shape.png
Normal file
BIN
Servicios/abstract-shape.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 33 KiB |
91
Servicios/index.html
Normal file
91
Servicios/index.html
Normal 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
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
---
|
||||
|
3
config.yaml
Normal file
3
config.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
baseURL: http://example.org/
|
||||
languageCode: en-us
|
||||
title: My New Hugo Site
|
3
go.mod
Normal file
3
go.mod
Normal file
|
@ -0,0 +1,3 @@
|
|||
module git.froth.zone/ren/Novoa
|
||||
|
||||
go 1.19
|
0
go.sum
Normal file
0
go.sum
Normal file
3
init.sh
Executable file
3
init.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
git config user.email "varun@fedora.email"
|
||||
git config user.name "ren"
|
Loading…
Reference in a new issue