nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger
This commit is contained in:
parent
94c80cf52b
commit
149a746149
@ -19,6 +19,10 @@
|
|||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cord{
|
||||||
|
color: #5865F2;
|
||||||
|
}
|
||||||
|
|
||||||
#buster{
|
#buster{
|
||||||
width: 123px;
|
width: 123px;
|
||||||
animation-name: spin;
|
animation-name: spin;
|
||||||
|
54
src/router/common_path_settings/home.json
Normal file
54
src/router/common_path_settings/home.json
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
{
|
||||||
|
"tl": {
|
||||||
|
"es": {
|
||||||
|
"tl_alahora": "A la hora de navegar este sitio, se encuentra estrictamente prohibido el actuar o pensar en los siguientes términos",
|
||||||
|
"tl_navegacion": "Navegación",
|
||||||
|
"tl_visitor_table": "Tabla de Visitantes",
|
||||||
|
"tl_pgp": "Clave PGP",
|
||||||
|
"tl_anterior": "Anterior",
|
||||||
|
"tl_siguiente": "Siguiente",
|
||||||
|
"tl_desdeldia": "Desde el día Domingo 20 de abril del año de nuestro Señor 2025, Lyrical Tokarev forma parte del",
|
||||||
|
"tl_webring": "Anillo de los Lunáticos",
|
||||||
|
"tl_asociado_numero": "Número de Asociado",
|
||||||
|
"tl_update_log": "Registro de Actualizaciones",
|
||||||
|
"tl_registro_anime_juegos": "Registro de Anime y Juegos",
|
||||||
|
"tl_websites": "Sitios Web",
|
||||||
|
"tl_bounty": "Si alguien sabe de donde salen, porfavor ser tan amable de dar noticia mediante correo electrónico. <br>1 BTC en recompensas.",
|
||||||
|
"tl_neocities": "Página de Neocities Restaurada",
|
||||||
|
"tl_listas": "LISTAS",
|
||||||
|
"tl_cord": "Corta el <cord>cord</cord>ón umbilical",
|
||||||
|
"tl_santa": "De vuelta a la tierra santa",
|
||||||
|
"tl_cc_files": "Archivos de CC",
|
||||||
|
"tl_enviar": "Enviar",
|
||||||
|
"tl_index": "Índice",
|
||||||
|
"tl_stuff": "Cosas",
|
||||||
|
"tl_doc_library": "Librería de Documentos",
|
||||||
|
"tl_banner_buttons": "Algunos Botones y Banners"
|
||||||
|
},
|
||||||
|
"en": {
|
||||||
|
"tl_alahora": "While visiting this site, it's strictly forbidden to act or think in the following terms",
|
||||||
|
"tl_navegacion": "Navigation",
|
||||||
|
"tl_visitor_table": "Visitor Table",
|
||||||
|
"tl_pgp": "PGP Key",
|
||||||
|
"tl_anterior": "Previous",
|
||||||
|
"tl_siguiente": "Next",
|
||||||
|
"tl_desdeldia": "Since the day Sunday, 20th of April, year of our Lord 2025, Lyrical Tokarev forms part of the",
|
||||||
|
"tl_webring": "Lunatic Webring",
|
||||||
|
"tl_asociado_numero": "Associate Number",
|
||||||
|
"tl_update_log": "Update Log",
|
||||||
|
"tl_registro_anime_juegos": "Games and Anime Backlog",
|
||||||
|
"tl_websites": "Websites",
|
||||||
|
"tl_bounty": "If anyone knows where these are from please send an email. <br>1 BTC in bounties.",
|
||||||
|
"tl_neocities": "Neocities Site Restored",
|
||||||
|
"tl_listas": "LISTS",
|
||||||
|
"tl_cord": "Cut the umbilical <cord>cord</cord>",
|
||||||
|
"tl_santa": "Back to the holy land",
|
||||||
|
"tl_cc_files": "CC Files",
|
||||||
|
"tl_enviar": "Submit",
|
||||||
|
"tl_index": "Index",
|
||||||
|
"tl_stuff": "Stuff",
|
||||||
|
"tl_doc_library": "Document Library",
|
||||||
|
"tl_banner_buttons": "Some Buttons and Banners"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,7 +1,7 @@
|
|||||||
const { dirname } = require('path');
|
const { dirname } = require('path');
|
||||||
const appDir = dirname(require.main.filename);
|
const appDir = dirname(require.main.filename);
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
const langs = ["en", "es"]
|
const langs = ["en", "es", "jp"]
|
||||||
const default_lang = "es"
|
const default_lang = "es"
|
||||||
|
|
||||||
function createCommonPath(router, path, renderParams = {
|
function createCommonPath(router, path, renderParams = {
|
||||||
@ -36,13 +36,31 @@ function createCommonPath(router, path, renderParams = {
|
|||||||
...renderOptions,
|
...renderOptions,
|
||||||
...getTlPartials(default_lang, path)
|
...getTlPartials(default_lang, path)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let tl = null
|
||||||
|
|
||||||
|
if(renderOptions.tl){
|
||||||
|
tl = renderOptions.tl
|
||||||
|
renderOptions = {
|
||||||
|
...renderOptions,
|
||||||
|
...renderOptions.tl[default_lang]
|
||||||
|
}
|
||||||
|
renderOptions.tl = null
|
||||||
|
}
|
||||||
|
|
||||||
createPath('/' + path, cb, renderOptions, router)
|
createPath('/' + path, cb, renderOptions, router)
|
||||||
for(let l in langs){
|
for(let l in langs){
|
||||||
if(langs[l] == default_lang){
|
if(langs[l] == default_lang){
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
const otherLangRender = {...renderOptions, ...getTlPartials(langs[l], path)}
|
let otherLangRender = {...renderOptions, ...getTlPartials(langs[l], path)}
|
||||||
otherLangRender.lang = langs[l]
|
otherLangRender.lang = langs[l]
|
||||||
|
if(tl && tl[langs[l]]){
|
||||||
|
otherLangRender = {
|
||||||
|
...otherLangRender,
|
||||||
|
...tl[langs[l]]
|
||||||
|
}
|
||||||
|
}
|
||||||
otherLangRender.langPath = '/' + langs[l]
|
otherLangRender.langPath = '/' + langs[l]
|
||||||
createPath(otherLangRender.langPath + '/' + path, cb, otherLangRender, router)
|
createPath(otherLangRender.langPath + '/' + path, cb, otherLangRender, router)
|
||||||
}
|
}
|
||||||
|
182
views/home.hbs
182
views/home.hbs
@ -2,7 +2,8 @@
|
|||||||
<center id="top" height="4" class="main_div">
|
<center id="top" height="4" class="main_div">
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
<marquee>{{> (lookup . 'tl_red')}}</marquee>
|
<marquee>{{> (lookup . 'tl_red')}}</marquee><br>
|
||||||
|
{{> (lookup . 'tl_en')}}
|
||||||
<table class="tabidachi_table" cellspacing="20" cellmargin="60" width="100%">
|
<table class="tabidachi_table" cellspacing="20" cellmargin="60" width="100%">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
@ -14,127 +15,11 @@
|
|||||||
<center>
|
<center>
|
||||||
<h3>LYRICAL TOKAREVの政</h3>
|
<h3>LYRICAL TOKAREVの政</h3>
|
||||||
<p>
|
<p>
|
||||||
A la hora de navegar este sitio, se encuentra estrictamente prohibido el actuar o pensar en los siguientes términos:
|
{{tl_alahora}}:
|
||||||
</p>
|
</p>
|
||||||
</center>
|
</center>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="red"><strong>Contenido</strong></li>
|
{{> (lookup . 'tl_ley')}}
|
||||||
<li class="red">Audiencia</li>
|
|
||||||
<li class="red"><strong>Consumir</strong></li>
|
|
||||||
<li>Política (medida)</li>
|
|
||||||
<li>Término</li>
|
|
||||||
<li>Merecer</li>
|
|
||||||
<li class="red">Creador</li>
|
|
||||||
<li class="red">Opinion</li>
|
|
||||||
<li class="red">Arte</li>
|
|
||||||
<li class="red">Obra</li>
|
|
||||||
<li class="red">Tecnologías</li>
|
|
||||||
<li>Motivación</li>
|
|
||||||
<li class="red">Comunidad</li>
|
|
||||||
<li class="red"><strong>Tóxico</strong></li>
|
|
||||||
<li>Preferencia</li>
|
|
||||||
<li class="red"><strong>Desarrollar</strong></li>
|
|
||||||
<li class="red">Saturado</li>
|
|
||||||
<li>Derecha</li>
|
|
||||||
<li>Izquierda</li>
|
|
||||||
<li class="red">Vida</li>
|
|
||||||
<li class="red">Tweet</li>
|
|
||||||
<li>Oscuro</li>
|
|
||||||
<li>Estética</li>
|
|
||||||
<li class="red"><strong>Deprecado</strong></li>
|
|
||||||
<li class="red">Obsoleto</li>
|
|
||||||
<li class="red">Sueños</li>
|
|
||||||
<li class="red">Desactualizado</li>
|
|
||||||
<li>Curso</li>
|
|
||||||
<li class="red"><strong>Consentimiento</strong></li>
|
|
||||||
<li class="red">Oppresión</li>
|
|
||||||
<li class="red">Proyecto</li>
|
|
||||||
<li>Idea</li>
|
|
||||||
<li class="red">Pibas</li>
|
|
||||||
<li class="red"><strong>Identidad</strong></li>
|
|
||||||
<li class="red">Global</li>
|
|
||||||
<li class="red">Emocional</li>
|
|
||||||
<li>Proyectar</li>
|
|
||||||
<li class="red">Moderno</li>
|
|
||||||
<li>Urbano</li>
|
|
||||||
<li class="red"><strong>Artista</strong></li>
|
|
||||||
<li>Retención</li>
|
|
||||||
<li>Personalidad</li>
|
|
||||||
<li class="red">Discriminación</li>
|
|
||||||
<li class="red">Smart</li>
|
|
||||||
<li class="red">App</li>
|
|
||||||
<li>Youtuber</li>
|
|
||||||
<li>Institucional</li>
|
|
||||||
<li>Poder</li>
|
|
||||||
<li class="red"><strong>Privilegio</strong></li>
|
|
||||||
<li class="red"><strong>Streamer</strong></li>
|
|
||||||
<li class="red">Gente</li>
|
|
||||||
<li class="red">Recurso</li>
|
|
||||||
<li>Desigualdad</li>
|
|
||||||
<li>Taza</li>
|
|
||||||
<li class="red"><strong>Bullying</strong></li>
|
|
||||||
<li>Igualdad</li>
|
|
||||||
<li class="red">Sistema</li>
|
|
||||||
<li>Diseño</li>
|
|
||||||
<li class="red"><strong>Nube</strong></li>
|
|
||||||
<li>Personal</li>
|
|
||||||
<li class="red"><strong>Sexualidad</strong></li>
|
|
||||||
<li class="red">Facto</li>
|
|
||||||
<li class="red">Factores</li>
|
|
||||||
<li class="red">Tendencia</li>
|
|
||||||
<li class="red">Algoritmo</li>
|
|
||||||
<li class="red"><strong>Viral</strong></li>
|
|
||||||
<li class="red"><strong>Chequeado</strong></li>
|
|
||||||
<li class="red">Social</li>
|
|
||||||
<li class="red">Licencia</li>
|
|
||||||
<li class="red">Crédito</li>
|
|
||||||
<li class="red">Atracción</li>
|
|
||||||
<li>Números</li>
|
|
||||||
<li class="red"><strong>Medio</strong></li>
|
|
||||||
<li>Cantidad</li>
|
|
||||||
<li class="red">Lector</li>
|
|
||||||
<li class="red">Dinámicas</li>
|
|
||||||
<li class="red"><strong>Colectivo</strong></li>
|
|
||||||
<li>Racional</li>
|
|
||||||
<li class="red">Mental</li>
|
|
||||||
<li>Tolerante</li>
|
|
||||||
<li class="red"><strong>Bienes</strong></li>
|
|
||||||
<li class="red">Servicio</li>
|
|
||||||
<li>Partidario</li>
|
|
||||||
<li class="red">Diverso</li>
|
|
||||||
<li>Fama</li>
|
|
||||||
<li class="red">Redes</li>
|
|
||||||
<li class="red">Piratería</li>
|
|
||||||
<li class="red"><strong>Take</strong></li>
|
|
||||||
<li>Dogma</li>
|
|
||||||
<li class="red"><strong>Mercado</strong></li>
|
|
||||||
<li class="red"><strong>Seguidores</strong></li>
|
|
||||||
<li class="red">Activismo</li>
|
|
||||||
<li class="red"><strong>Activista</strong></li>
|
|
||||||
<li class="red">Privacidad</li>
|
|
||||||
<li class="red"><strong>Cancelación</strong></li>
|
|
||||||
<li class="red">Controversial</li>
|
|
||||||
<li>Suscriptores</li>
|
|
||||||
<li>Likes</li>
|
|
||||||
<li class="red">Material</li>
|
|
||||||
<li class="red">Responsivo</li>
|
|
||||||
<li class="red">Libre</li>
|
|
||||||
<li class="red">Logro</li>
|
|
||||||
<li class="red"><strong>Orgullo</strong></li>
|
|
||||||
<li class="red">Democrático</li>
|
|
||||||
<li>Estratégico</li>
|
|
||||||
<li class="red">Talento</li>
|
|
||||||
<li>Éxito</li>
|
|
||||||
<li class="red">Plataforma</li>
|
|
||||||
<li class="red"><strong>Procrastinación</strong></li>
|
|
||||||
<li>Público</li>
|
|
||||||
<li class="red">Pasión</li>
|
|
||||||
<li class="red"><strong>Género</strong></li>
|
|
||||||
<li class="red">Popularidad</li>
|
|
||||||
<li>Producción</li>
|
|
||||||
<li class="red">Producto</li>
|
|
||||||
<li class="red"><strong>Productivo</strong></li>
|
|
||||||
<li class="red"><strong>Productividad</strong></li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</td>
|
</td>
|
||||||
</tbody>
|
</tbody>
|
||||||
@ -145,14 +30,14 @@
|
|||||||
<table width="200" cellpadding="20" border="1" class="index_table">
|
<table width="200" cellpadding="20" border="1" class="index_table">
|
||||||
<tbody>
|
<tbody>
|
||||||
<td>
|
<td>
|
||||||
<center><h2>Índice</h2></center>
|
<center><h2>{{tl_index}}</h2></center>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#top">世界最後の日</a></li>
|
<li><a href="#top">世界最後の日</a></li>
|
||||||
<li><a href="#navigation">Navegación</a></li>
|
<li><a href="#navigation">{{tl_navegacion}}</a></li>
|
||||||
<li><a href="#comicchat">Comic Chat</a></li>
|
<li><a href="#comicchat">Comic Chat</a></li>
|
||||||
<li><a href="#yuugenmagan">YuugenMagan</a></li>
|
<li><a href="#yuugenmagan">YuugenMagan</a></li>
|
||||||
<li><a href="#propaganda">Propaganda</a></li>
|
<li><a href="#propaganda">Propaganda</a></li>
|
||||||
<li><a href="#visitor_table">Tabla de Visitantes</a></li>
|
<li><a href="#visitor_table">{{tl_visitor_table}}</a></li>
|
||||||
<li><a href="#bottom">???</a></li>
|
<li><a href="#bottom">???</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</td>
|
</td>
|
||||||
@ -162,12 +47,10 @@
|
|||||||
<h1>Lyrical Tokarev ~ Tabidachi Edition</h1>
|
<h1>Lyrical Tokarev ~ Tabidachi Edition</h1>
|
||||||
<img alt="Flower Tank" src="/public/images/flower_tank.png">
|
<img alt="Flower Tank" src="/public/images/flower_tank.png">
|
||||||
<p>
|
<p>
|
||||||
Todavía quedan muchas cosas por hacer.<br>
|
{{> (lookup . 'tl_ultimodia')}}
|
||||||
¡El Último Día está a la vuelta de la esquina!
|
|
||||||
Si se encuentra en necesidad inmediata de establecer un canal de comunicación, los detalles se pueden encontrar debajo...<br>
|
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
E-mail: <a href="mailto:mail@lyricaltokarev.com">mail@lyricaltokarev.com</a> - <a href="/public/etc/lt.asc">Clave PGP</a> (25AEE12CD6FBF27D985E6FCE5C6D682105D44517)<br>
|
E-mail: <a href="mailto:mail@lyricaltokarev.com">mail@lyricaltokarev.com</a> - <a href="/public/etc/lt.asc">{{tl_pgp}}</a> (25AEE12CD6FBF27D985E6FCE5C6D682105D44517)<br>
|
||||||
</p>
|
</p>
|
||||||
<table class="kiki_table" border="1" align="center" cellpading="0">
|
<table class="kiki_table" border="1" align="center" cellpading="0">
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -189,7 +72,7 @@
|
|||||||
<h3>- 所属 -<br><a href="//ring.cidoku.net/"><p>< Anillo de los Lunáticos ></Anillo></a></h3>
|
<h3>- 所属 -<br><a href="//ring.cidoku.net/"><p>< Anillo de los Lunáticos ></Anillo></a></h3>
|
||||||
<table cellpadding="5" border="1">
|
<table cellpadding="5" border="1">
|
||||||
<td align="center">
|
<td align="center">
|
||||||
<a href="//ring.cidoku.net/prev?id=1"><= Anterior ☽</a><p>☾☾☾☾☾☾☾☾☾<br>Desde el día Domingo 20 de abril del año de nuestro Señor 2025, Lyrical Tokarev forma parte del <a href="//ring.cidoku.net/">Anillo de los Lunáticos.</a><br>---------------------------<br>Número de asociado: #1<br>☽☽☽☽☽☽☽☽☽<br></p><a href="//ring.cidoku.net/next?id=1">☾ Siguiente =></a>
|
<a href="//ring.cidoku.net/prev?id=1"><= {{tl_anterior}} ☽</a><p>☾☾☾☾☾☾☾☾☾<br>{{tl_desdeldia}} <a href="//ring.cidoku.net/">{{tl_webring}}.</a><br>---------------------------<br>{{tl_asociado_numero}}: #1<br>☽☽☽☽☽☽☽☽☽<br></p><a href="//ring.cidoku.net/next?id=1">☾ {{tl_siguiente}} =></a>
|
||||||
</td>
|
</td>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
@ -197,20 +80,20 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<hr>
|
<hr>
|
||||||
<h2 id="navigation">Navegación</h2>
|
<h2 id="navigation">{{tl_navegacion}}</h2>
|
||||||
|
|
||||||
<table cellpadding="10" class="navigation_table" border="1">
|
<table cellpadding="10" class="navigation_table" border="1">
|
||||||
<tbody align="center">
|
<tbody align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="4"><a href="{{langPath}}/update_log">Registro de Actualizaciones</a></td>
|
<td colspan="4"><a href="{{langPath}}/update_log">{{tl_update_log}}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td rowspan="2" width="200">
|
<td rowspan="2" width="200">
|
||||||
<img alt="Note" src="/public/images/icons/note.png"><br>
|
<img alt="Note" src="/public/images/icons/note.png"><br>
|
||||||
<h3>LISTAS</h3>
|
<h3>{{tl_listas}}</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="{{langPath}}/lists/anime">Registro de Anime y Juegos</a></li>
|
<li><a href="{{langPath}}/lists/anime">{{tl_registro_anime_juegos}}</a></li>
|
||||||
<li><a href="{{langPath}}/lists/sites">Sitios Web</a></li>
|
<li><a href="{{langPath}}/lists/sites">{{tl_websites}}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<br>
|
<br>
|
||||||
@ -223,10 +106,10 @@
|
|||||||
</td>
|
</td>
|
||||||
<td class="gang" colspan="2">
|
<td class="gang" colspan="2">
|
||||||
<br>
|
<br>
|
||||||
<a href="https://files.catbox.moe/y6h68g.rar"><img src="/public/images/gang/badarot.png"></a><a href="/kiki"><img src="/public/images/kiki.png"></a><img src="/public/images/gang/kopa.png"><br>
|
<a href="https://files.catbox.moe/y6h68g.rar"><img src="/public/images/gang/badarot.png"></a><a href="{{langPath}}/kiki"><img src="/public/images/kiki.png"></a><img src="/public/images/gang/kopa.png"><br>
|
||||||
<img src="/public/images/gang/lean.png"><img src="/public/images/gang/bathroom_girl.png"><img src="/public/images/gang/nanashi.png"><br>
|
<img src="/public/images/gang/lean.png"><img src="/public/images/gang/bathroom_girl.png"><img src="/public/images/gang/nanashi.png"><br>
|
||||||
<a href="https://cidoku.net{{langPath}}/stars/shirogami"><img src="/public/images/gang/shirogami.png"></a><a href="https://swksoft.itch.io/anathema-interloper"><img src="/public/images/gang/monserrat.png"></a><br>
|
<a href="https://cidoku.net{{langPath}}/stars/shirogami"><img src="/public/images/gang/shirogami.png"></a><a href="https://swksoft.itch.io/anathema-interloper"><img src="/public/images/gang/monserrat.png"></a><br>
|
||||||
Si alguien sabe de donde salen, porfavor ser tan amable de dar noticia mediante correo electrónico. <br>1 BTC en recompensas.
|
{{{tl_bounty}}}
|
||||||
<br>
|
<br>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -234,22 +117,21 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<img alt="Note" src="/public/images/index/section_images/neocities.png"><br>
|
<img alt="Note" src="/public/images/index/section_images/neocities.png"><br>
|
||||||
<a href="/public/pages/neocities-lyricaltokarev/index.html"><h3>Página de Neocities restaurada</h3></a>
|
<a href="/public/pages/neocities-lyricaltokarev/index.html"><h3>{{tl_neocities}}</h3></a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<br>
|
<br>
|
||||||
<img alt="Note" src="/public/images/index/section_images/videos.png"><br>
|
<h3>woo</h3>
|
||||||
<a href="#navigation"><h3><s>Videos</s></h3></a><h3>CLAUSURADO DE MOMENTO</h3>
|
|
||||||
</td>
|
</td>
|
||||||
<td width="200" rowspan="2">
|
<td width="200" rowspan="2">
|
||||||
<img alt="Note" src="/public/images/icons/folder/folder_file.png"><br>
|
<img alt="Note" src="/public/images/icons/folder/folder_file.png"><br>
|
||||||
<h3>ARCHIVOS PÚBLICOS</h3>
|
<h3>ARCHIVOS PÚBLICOS</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/public/">Index</a></li>
|
<li><a href="/public/">{{tl_index}}</a></li>
|
||||||
<li><a href="/public/dynamic/sync/stuff/pdf-documents-library">Librería de Documentos</a></li>
|
<li><a href="/public/dynamic/sync/stuff/pdf-documents-library">{{tl_doc_library}}</a></li>
|
||||||
<li><a href="/public/cchat">Comic Chat</a></li>
|
<li><a href="/public/cchat">Comic Chat</a></li>
|
||||||
<li><a href="/public/dynamic/sync/buttons/">Algunos botones y banners</a></li>
|
<li><a href="/public/dynamic/sync/buttons/">{{tl_banner_buttons}}</a></li>
|
||||||
<li><a href="/public/dynamic/sync/stuff/">Cosas</a></li>
|
<li><a href="/public/dynamic/sync/stuff/">{{tl_stuff}}</a></li>
|
||||||
<li><a href="/public/dynamic/sync/nigger/">Nigger</a></li>
|
<li><a href="/public/dynamic/sync/nigger/">Nigger</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</td>
|
</td>
|
||||||
@ -258,8 +140,10 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<hr>
|
<hr>
|
||||||
<img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><br>
|
<img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png">
|
||||||
No todo lo que está listado tiene porqué estar acá. Intenta <a class="hide_link" href="/clicking">clickear</a> por ahí para ver más!<br>
|
<br>
|
||||||
|
{{> (lookup . 'tl_listado')}}
|
||||||
|
<br>
|
||||||
<img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png">
|
<img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png"><img src="/public/images/assets/kiki_small_floating_head.png">
|
||||||
<hr>
|
<hr>
|
||||||
</td>
|
</td>
|
||||||
@ -278,12 +162,12 @@
|
|||||||
<br>
|
<br>
|
||||||
<hr>
|
<hr>
|
||||||
<h2 id="comicchat">Comic Chat</h2>
|
<h2 id="comicchat">Comic Chat</h2>
|
||||||
<p>Corta el cordón umbilical.</p>
|
<p>{{{tl_cord}}}.</p>
|
||||||
<a href="https://spyware.neocities.org/articles/discord"><img alt="Discord? No Way" src="/public/images/buttons/discord-no-way.gif"></a>
|
<a href="https://spyware.neocities.org/articles/discord"><img alt="Discord? No Way" src="/public/images/buttons/discord-no-way.gif"></a>
|
||||||
<p>De vuelta a la tierra santa.</p>
|
<p>{{tl_santa}}.</p>
|
||||||
<a href="http://vfiles.lyricaltokarev.com/a69e9897-bfcf-4a53-ac9d-25af956f05be/5802d3ac-b489-49c8-a4ce-8e38814077b5-360-fragmented.mp4">Loquendo critica destructiva a discord</a><br><br>
|
<a href="http://vfiles.lyricaltokarev.com/a69e9897-bfcf-4a53-ac9d-25af956f05be/5802d3ac-b489-49c8-a4ce-8e38814077b5-360-fragmented.mp4">Loquendo critica destructiva a discord</a><br><br>
|
||||||
<a href="https://cidoku.net/stuff/cchat/"><img alt="Kiki threatens to shoot Kurogami in case her demands aren't met." title="Kiki threatens to shoot Kurogami in case her demands aren't met." id="cc" src="/public/images/comicchat.png"></a><br><br>
|
<a href="https://cidoku.net/stuff/cchat/"><img alt="Kiki threatens to shoot Kurogami in case her demands aren't met." title="Kiki threatens to shoot Kurogami in case her demands aren't met." id="cc" src="/public/images/comicchat.png"></a><br><br>
|
||||||
<a href="/public/cchat/"><img class="folder" alt="Folder" src="/public/images/icons/folder/folder_file_kiki.png"><br>Archivos de CC</a>
|
<a href="/public/cchat/"><img class="folder" alt="Folder" src="/public/images/icons/folder/folder_file_kiki.png"><br>{{tl_cc_files}}</a>
|
||||||
<hr>
|
<hr>
|
||||||
<h2 id="yuugenmagan">YuugenMagan</h2>
|
<h2 id="yuugenmagan">YuugenMagan</h2>
|
||||||
<img title="YuugenMagan" alt="YuugenMagan" src="/public/images/yuugenmagan.png">
|
<img title="YuugenMagan" alt="YuugenMagan" src="/public/images/yuugenmagan.png">
|
||||||
@ -308,12 +192,12 @@
|
|||||||
</div><br>
|
</div><br>
|
||||||
<img alt="Lyrical Tokarev" src="/public/images/propaganda/al-banner.png"><br>
|
<img alt="Lyrical Tokarev" src="/public/images/propaganda/al-banner.png"><br>
|
||||||
<img alt="Lyrical Tokarev Button" src="/public/images/propaganda/lyricaltokarevbutton.gif">
|
<img alt="Lyrical Tokarev Button" src="/public/images/propaganda/lyricaltokarevbutton.gif">
|
||||||
<p>Este sitio es un ip logger. No hagas <a href="https://{{lang}}.wikipedia.org/wiki/Hotlinking">hotlink</a> carajo.</p>
|
<p>{{> (lookup . 'tl_hotlink')}}</p>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<h2 id="visitor_table">Tabla de Visitantes</h2>
|
<h2 id="visitor_table">{{tl_visitor_table}}</h2>
|
||||||
<p>Experimental.</p>
|
<p>Experimental.</p>
|
||||||
<table width="100%" class="visitor_table" cellpadding="10" border="1">
|
<table width="100%" class="visitor_table" cellpadding="10" border="1">
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -340,7 +224,7 @@
|
|||||||
{{!-- <label>Don't check</label> --}}
|
{{!-- <label>Don't check</label> --}}
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
<button type="submit">Enviar</button>
|
<button type="submit">{{tl_enviar}}</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
0
views/partials/translations/en/home/en.hbs
Normal file
0
views/partials/translations/en/home/en.hbs
Normal file
1
views/partials/translations/en/home/hotlink.hbs
Normal file
1
views/partials/translations/en/home/hotlink.hbs
Normal file
@ -0,0 +1 @@
|
|||||||
|
This site is an ip logger. Do not <a href="https://en.wikipedia.org/wiki/Hotlinking">hotlink</a>
|
122
views/partials/translations/en/home/ley.hbs
Normal file
122
views/partials/translations/en/home/ley.hbs
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
<li class="red"><strong>Content</strong></li>
|
||||||
|
<li class="red">Audience</li>
|
||||||
|
<li class="red"><strong>Consume</strong></li>
|
||||||
|
<li>Policy</li>
|
||||||
|
<li>Term</li>
|
||||||
|
<li>Deserve</li>
|
||||||
|
<li class="red">Creator</li>
|
||||||
|
<li class="red">Opinion</li>
|
||||||
|
<li class="red"><strong>Art</strong></li>
|
||||||
|
<li class="red"><strong>Technologies</strong></li>
|
||||||
|
<li>Motivation</li>ç
|
||||||
|
<li class="red">Community</li>
|
||||||
|
<li class="red"><strong>Toxic</strong></li>
|
||||||
|
<li class="red">Views</li>
|
||||||
|
<li>Preference</li>
|
||||||
|
<li class="red"><strong>Feed</strong></li>
|
||||||
|
<li class="red">Browse</li>
|
||||||
|
<li class="red"><strong>Develop</strong></li>
|
||||||
|
<li class="red">Saturated</li>
|
||||||
|
<li>Right</li>
|
||||||
|
<li>Left</li>
|
||||||
|
<li class="red">Life</li>
|
||||||
|
<li class="red">Tweet</li>
|
||||||
|
<li>Obscure</li>
|
||||||
|
<li>Vibe</li>
|
||||||
|
<li>Aesthetic</li>
|
||||||
|
<li class="red"><strong>Deprecated</strong></li>
|
||||||
|
<li>Obsolete</li>
|
||||||
|
<li class="red">Dream</li>
|
||||||
|
<li class="red">Outdated</li>
|
||||||
|
<li>Course</li>
|
||||||
|
<li class="red"><strong>Consent</strong></li>
|
||||||
|
<li class="red">Oppresion</li>
|
||||||
|
<li class="red">Y'all</li>
|
||||||
|
<li class="red">Yikes</li>
|
||||||
|
<li class="red">Project</li>
|
||||||
|
<li>Idea</li>
|
||||||
|
<li class="red">Pibes/Pibas</li>
|
||||||
|
<li class="red"><strong>Identity</strong></li>
|
||||||
|
<li class="red">Global</li>
|
||||||
|
<li class="red">Emotional</li>
|
||||||
|
<li>Planning</li>
|
||||||
|
<li class="red">Modern</li>
|
||||||
|
<li>Urban</li>
|
||||||
|
<li class="red">Matrix</li>
|
||||||
|
<li class="red"><strong>Artist</strong></li>
|
||||||
|
<li>Retention</li>
|
||||||
|
<li>Personality</li>
|
||||||
|
<li>Discrimination</li>
|
||||||
|
<li class="red">Smart</li>
|
||||||
|
<li class="red">App</li>
|
||||||
|
<li>Youtuber</li>
|
||||||
|
<li>Institutional</li>
|
||||||
|
<li>Power</li>
|
||||||
|
<li class="red"><strong>Privilege</strong></li>
|
||||||
|
<li class="red"><strong>Streamer</strong></li>
|
||||||
|
<li class="red">People</li>
|
||||||
|
<li class="red">Resource</li>
|
||||||
|
<li>Inequality</li>
|
||||||
|
<li>Fee</li>
|
||||||
|
<li class="red"><strong>Bullying</strong></li>
|
||||||
|
<li>Equality</li>
|
||||||
|
<li class="red">System</li>
|
||||||
|
<li>Design</li>
|
||||||
|
<li class="red"><strong>Cloud</strong></li>
|
||||||
|
<li>Personal</li>
|
||||||
|
<li class="red"><strong>Sexuality</strong></li>
|
||||||
|
<li>Fact</li>
|
||||||
|
<li class="red">Tendency</li>
|
||||||
|
<li class="red">Algorithm</li>
|
||||||
|
<li class="red"><strong>Viral</strong></li>
|
||||||
|
<li class="red">Checked</li>
|
||||||
|
<li class="red">Debunk</li>
|
||||||
|
<li class="red">Social</li>
|
||||||
|
<li class="red">License</li>
|
||||||
|
<li>Credit</li>
|
||||||
|
<li class="red">Attraction</li>
|
||||||
|
<li>Numbers</li>
|
||||||
|
<li class="red">Media</li>
|
||||||
|
<li class="red"><strong>Medium</strong></li>
|
||||||
|
<li>Amount</li>
|
||||||
|
<li class="red">Reader</li>
|
||||||
|
<li class="red">Dynamics</li>
|
||||||
|
<li class="red"><strong>Collective</strong></li>
|
||||||
|
<li>Rational</li>
|
||||||
|
<li class="red">Mental</li>
|
||||||
|
<li>Tolerant</li>
|
||||||
|
<li class="red"><strong>Goods</strong></li>
|
||||||
|
<li class="red">Service</li>
|
||||||
|
<li>Advocate</li>
|
||||||
|
<li class="red">Diverse</li>
|
||||||
|
<li>Fame</li>
|
||||||
|
<li class="red">Piracy</li>
|
||||||
|
<li class="red"><strong>Take</strong></li>
|
||||||
|
<li>Dogma</li>
|
||||||
|
<li class="red"><strong>Market</strong></li>
|
||||||
|
<li class="red"><strong>Followers</strong></li>
|
||||||
|
<li class="red">Activism</li>
|
||||||
|
<li class="red"><strong>Activist</strong></li>
|
||||||
|
<li class="red">Privacy</li>
|
||||||
|
<li class="red"><strong>Cancel</strong></li>
|
||||||
|
<li class="red">Controversial</li>
|
||||||
|
<li>Subscribers</li>
|
||||||
|
<li>Likes</li>
|
||||||
|
<li class="red">Material</li>
|
||||||
|
<li class="red">Responsive</li>
|
||||||
|
<li class="red">Free</li>
|
||||||
|
<li class="red">Achievement</li>
|
||||||
|
<li class="red"><strong>Pride</strong></li>
|
||||||
|
<li class="red">Democratic</li>
|
||||||
|
<li>Strategic</li>
|
||||||
|
<li class="red">Talent</li>
|
||||||
|
<li>Success</li>
|
||||||
|
<li class="red">Platform</li>
|
||||||
|
<li class="red"><strong>Procrastination</strong></li>
|
||||||
|
<li>Public</li>
|
||||||
|
<li class="red">Passion</li>
|
||||||
|
<li class="red"><strong>Gender</strong></li>
|
||||||
|
<li class="red">Popularity</li>
|
||||||
|
<li>Production</li>
|
||||||
|
<li class="red">Product</li>
|
||||||
|
<li class="red"><strong>Productive</strong></li>
|
1
views/partials/translations/en/home/listado.hbs
Normal file
1
views/partials/translations/en/home/listado.hbs
Normal file
@ -0,0 +1 @@
|
|||||||
|
Not everything is listed in here. Try <a class="hide_link" href="{{langPath}}/clicking">clicking</a> around the site for more!
|
3
views/partials/translations/en/home/ultimodia.hbs
Normal file
3
views/partials/translations/en/home/ultimodia.hbs
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
There are things to do.<br>
|
||||||
|
The World's Last Day is just around the corner!<br>
|
||||||
|
If you find yourself in dire need of establishing a communication channel, details are following below...<br>
|
1
views/partials/translations/es/home/en.hbs
Normal file
1
views/partials/translations/es/home/en.hbs
Normal file
@ -0,0 +1 @@
|
|||||||
|
<h4 align="left">   <a href="/en/home">ENGLISH VERSION (WIP) (MOST PAGES WERE ALREADY IN ENGLISH AND THE SPANISH ONES ARE UNTRANSLATED ANYWAYS)</a></h4>
|
1
views/partials/translations/es/home/hotlink.hbs
Normal file
1
views/partials/translations/es/home/hotlink.hbs
Normal file
@ -0,0 +1 @@
|
|||||||
|
Este sitio es un ip logger. No hagas <a href="https://es.wikipedia.org/wiki/Hotlinking">hotlink</a>
|
117
views/partials/translations/es/home/ley.hbs
Normal file
117
views/partials/translations/es/home/ley.hbs
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
<li class="red"><strong>Contenido</strong></li>
|
||||||
|
<li class="red">Audiencia</li>
|
||||||
|
<li class="red"><strong>Consumir</strong></li>
|
||||||
|
<li>Política (medida)</li>
|
||||||
|
<li>Término</li>
|
||||||
|
<li>Merecer</li>
|
||||||
|
<li class="red">Creador</li>
|
||||||
|
<li class="red">Opinion</li>
|
||||||
|
<li class="red">Arte</li>
|
||||||
|
<li class="red">Obra</li>
|
||||||
|
<li class="red">Tecnologías</li>
|
||||||
|
<li>Motivación</li>
|
||||||
|
<li class="red">Comunidad</li>
|
||||||
|
<li class="red"><strong>Tóxico</strong></li>
|
||||||
|
<li>Preferencia</li>
|
||||||
|
<li class="red"><strong>Desarrollar</strong></li>
|
||||||
|
<li class="red">Saturado</li>
|
||||||
|
<li>Derecha</li>
|
||||||
|
<li>Izquierda</li>
|
||||||
|
<li class="red">Vida</li>
|
||||||
|
<li class="red">Tweet</li>
|
||||||
|
<li>Oscuro</li>
|
||||||
|
<li>Estética</li>
|
||||||
|
<li class="red"><strong>Deprecado</strong></li>
|
||||||
|
<li class="red">Obsoleto</li>
|
||||||
|
<li class="red">Sueños</li>
|
||||||
|
<li class="red">Desactualizado</li>
|
||||||
|
<li>Curso</li>
|
||||||
|
<li class="red"><strong>Consentimiento</strong></li>
|
||||||
|
<li class="red">Oppresión</li>
|
||||||
|
<li class="red">Proyecto</li>
|
||||||
|
<li>Idea</li>
|
||||||
|
<li class="red">Pibas</li>
|
||||||
|
<li class="red"><strong>Identidad</strong></li>
|
||||||
|
<li class="red">Global</li>
|
||||||
|
<li class="red">Emocional</li>
|
||||||
|
<li>Proyectar</li>
|
||||||
|
<li class="red">Moderno</li>
|
||||||
|
<li>Urbano</li>
|
||||||
|
<li class="red"><strong>Artista</strong></li>
|
||||||
|
<li>Retención</li>
|
||||||
|
<li>Personalidad</li>
|
||||||
|
<li class="red">Discriminación</li>
|
||||||
|
<li class="red">Smart</li>
|
||||||
|
<li class="red">App</li>
|
||||||
|
<li>Youtuber</li>
|
||||||
|
<li>Institucional</li>
|
||||||
|
<li>Poder</li>
|
||||||
|
<li class="red"><strong>Privilegio</strong></li>
|
||||||
|
<li class="red"><strong>Streamer</strong></li>
|
||||||
|
<li class="red">Gente</li>
|
||||||
|
<li class="red">Recurso</li>
|
||||||
|
<li>Desigualdad</li>
|
||||||
|
<li>Taza</li>
|
||||||
|
<li class="red"><strong>Bullying</strong></li>
|
||||||
|
<li>Igualdad</li>
|
||||||
|
<li class="red">Sistema</li>
|
||||||
|
<li>Diseño</li>
|
||||||
|
<li class="red"><strong>Nube</strong></li>
|
||||||
|
<li>Personal</li>
|
||||||
|
<li class="red"><strong>Sexualidad</strong></li>
|
||||||
|
<li class="red">Facto</li>
|
||||||
|
<li class="red">Factores</li>
|
||||||
|
<li class="red">Tendencia</li>
|
||||||
|
<li class="red">Algoritmo</li>
|
||||||
|
<li class="red"><strong>Viral</strong></li>
|
||||||
|
<li class="red"><strong>Chequeado</strong></li>
|
||||||
|
<li class="red">Social</li>
|
||||||
|
<li class="red">Licencia</li>
|
||||||
|
<li class="red">Crédito</li>
|
||||||
|
<li class="red">Atracción</li>
|
||||||
|
<li>Números</li>
|
||||||
|
<li class="red"><strong>Medio</strong></li>
|
||||||
|
<li>Cantidad</li>
|
||||||
|
<li class="red">Lector</li>
|
||||||
|
<li class="red">Dinámicas</li>
|
||||||
|
<li class="red"><strong>Colectivo</strong></li>
|
||||||
|
<li>Racional</li>
|
||||||
|
<li class="red">Mental</li>
|
||||||
|
<li>Tolerante</li>
|
||||||
|
<li class="red"><strong>Bienes</strong></li>
|
||||||
|
<li class="red">Servicio</li>
|
||||||
|
<li>Partidario</li>
|
||||||
|
<li class="red">Diverso</li>
|
||||||
|
<li>Fama</li>
|
||||||
|
<li class="red">Redes</li>
|
||||||
|
<li class="red">Piratería</li>
|
||||||
|
<li class="red"><strong>Take</strong></li>
|
||||||
|
<li>Dogma</li>
|
||||||
|
<li class="red"><strong>Mercado</strong></li>
|
||||||
|
<li class="red"><strong>Seguidores</strong></li>
|
||||||
|
<li class="red">Activismo</li>
|
||||||
|
<li class="red"><strong>Activista</strong></li>
|
||||||
|
<li class="red">Privacidad</li>
|
||||||
|
<li class="red"><strong>Cancelación</strong></li>
|
||||||
|
<li class="red">Controversial</li>
|
||||||
|
<li>Suscriptores</li>
|
||||||
|
<li>Likes</li>
|
||||||
|
<li class="red">Material</li>
|
||||||
|
<li class="red">Responsivo</li>
|
||||||
|
<li class="red">Libre</li>
|
||||||
|
<li class="red">Logro</li>
|
||||||
|
<li class="red"><strong>Orgullo</strong></li>
|
||||||
|
<li class="red">Democrático</li>
|
||||||
|
<li>Estratégico</li>
|
||||||
|
<li class="red">Talento</li>
|
||||||
|
<li>Éxito</li>
|
||||||
|
<li class="red">Plataforma</li>
|
||||||
|
<li class="red"><strong>Procrastinación</strong></li>
|
||||||
|
<li>Público</li>
|
||||||
|
<li class="red">Pasión</li>
|
||||||
|
<li class="red"><strong>Género</strong></li>
|
||||||
|
<li class="red">Popularidad</li>
|
||||||
|
<li>Producción</li>
|
||||||
|
<li class="red">Producto</li>
|
||||||
|
<li class="red"><strong>Productivo</strong></li>
|
||||||
|
<li class="red"><strong>Productividad</strong></li>
|
1
views/partials/translations/es/home/listado.hbs
Normal file
1
views/partials/translations/es/home/listado.hbs
Normal file
@ -0,0 +1 @@
|
|||||||
|
No todo está listado acá. Intenta <a class="hide_link" href="{{langPath}}/clicking">clickear</a> por ahí para ver más!
|
3
views/partials/translations/es/home/ultimodia.hbs
Normal file
3
views/partials/translations/es/home/ultimodia.hbs
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
Todavía quedan muchas cosas por hacer.<br>
|
||||||
|
¡El Último Día está a la vuelta de la esquina!<br>
|
||||||
|
Si se encuentra en necesidad inmediata de establecer un canal de comunicación, los detalles se pueden encontrar debajo...<br>
|
Loading…
Reference in New Issue
Block a user