This commit is contained in:
parent
13375414fc
commit
b2d3bdc0a6
4 changed files with 6 additions and 6 deletions
4
502.html
4
502.html
|
@ -1,8 +1,8 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<link rel="stylesheet" href="https://nulo.in/drip.css" />
|
<link rel="stylesheet" href="https://nulo.ar/drip.css" />
|
||||||
<link rel="stylesheet" href="https://nulo.in/center.css" />
|
<link rel="stylesheet" href="https://nulo.ar/center.css" />
|
||||||
<title>502 me caí :(</title>
|
<title>502 me caí :(</title>
|
||||||
|
|
||||||
<h1>Me caí :( mala puerta de enlace</h1>
|
<h1>Me caí :( mala puerta de enlace</h1>
|
||||||
|
|
|
@ -96,7 +96,7 @@ async function compileFile(name: string) {
|
||||||
async function compilePage(config: Config, sourceFileName: string) {
|
async function compilePage(config: Config, sourceFileName: string) {
|
||||||
const name = basename(sourceFileName, extname(sourceFileName));
|
const name = basename(sourceFileName, extname(sourceFileName));
|
||||||
const isIndex = name === "index";
|
const isIndex = name === "index";
|
||||||
const title = isIndex ? "nulo.in" : formatNameToPlainText(name);
|
const title = isIndex ? "nulo.ar" : formatNameToPlainText(name);
|
||||||
const fileConnections = connections.filter(({ linked }) => linked === name);
|
const fileConnections = connections.filter(({ linked }) => linked === name);
|
||||||
|
|
||||||
const contentHtml = await compileContentHtml(config, sourceFileName);
|
const contentHtml = await compileContentHtml(config, sourceFileName);
|
||||||
|
@ -181,7 +181,7 @@ function generateHead(titlee: string, outputName: string): Renderable[] {
|
||||||
}),
|
}),
|
||||||
meta({
|
meta({
|
||||||
property: "og:url",
|
property: "og:url",
|
||||||
content: `https://nulo.in/${outputName}.html`,
|
content: `https://nulo.ar/${outputName}.html`,
|
||||||
}),
|
}),
|
||||||
meta({
|
meta({
|
||||||
property: "og:image",
|
property: "og:image",
|
||||||
|
|
2
index.md
2
index.md
|
@ -1,4 +1,4 @@
|
||||||
<h1 class="main-title">nulo❥in</h1>
|
<h1 class="main-title">nulo❥ar</h1>
|
||||||
|
|
||||||
> What's bizarre? I mean, we're all pretty bizarre.<br>Some of us are just better at hiding it, that's all.
|
> What's bizarre? I mean, we're all pretty bizarre.<br>Some of us are just better at hiding it, that's all.
|
||||||
|
|
||||||
|
|
2
upload
2
upload
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
rsync --rsh='ssh -p420' --recursive --chmod=644 build/ ci-nulo-in@nulo.in:/var/www/nulo.in/
|
rsync --rsh='ssh -p420' --recursive --chmod=644 build/ ci-nulo-in@nulo.in:/var/www/nulo.ar/
|
||||||
|
|
Reference in a new issue