home/ changes
This commit is contained in:
parent
5257a41b4b
commit
99b5248a21
@ -1,7 +1,7 @@
|
|||||||
<HEAD>
|
<HEAD>
|
||||||
<LINK HREF="https://trinity.moe/_PAGE" REL="canonical" />
|
<LINK HREF="https://trinity.moe/_PAGE" REL="canonical" />
|
||||||
<LINK HREF="img/icons/favicon.ico" REL="shortcut icon" TYPE="image/x-icon" />
|
<LINK HREF="/img/icons/favicon.ico" REL="shortcut icon" TYPE="image/x-icon" />
|
||||||
<LINK HREF="css/blank.css" ID="styling" REL="stylesheet" />
|
<LINK HREF="/css/blank.css" ID="styling" REL="stylesheet" />
|
||||||
<META CHARSET="UTF-8" />
|
<META CHARSET="UTF-8" />
|
||||||
<META CONTENT="dtb" NAME="author" />
|
<META CONTENT="dtb" NAME="author" />
|
||||||
<META CONTENT="_DESCRIPTION" NAME="description" />
|
<META CONTENT="_DESCRIPTION" NAME="description" />
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
index.html: index.m4 ../head.m4
|
index.html: index.m4 ../head.m4 ../html.m4
|
||||||
m4 index.m4 >index.html
|
m4 index.m4 >index.html
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
define(`_TITLE', `home')dnl
|
define(`_TITLE', `home')dnl
|
||||||
define(`_DESCRIPTION', `browser home page')dnl
|
define(`_DESCRIPTION', `browser home page')dnl
|
||||||
define(`_PAGE', `home/')dnl
|
define(`_PAGE', `home/')dnl
|
||||||
define(`_STYLE', `')
|
define(`_STYLE', `')dnl
|
||||||
|
include(`../html.m4')dnl
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<HTML lang="en">
|
<HTML lang="en">
|
||||||
include(`../head.m4')dnl
|
include(`../head.m4')dnl
|
||||||
<BODY>
|
_body(`
|
||||||
<P><A HREF="/">~ www.trinity.moe</A></P>
|
<P><A HREF="/">~ www.trinity.moe</A></P>
|
||||||
<SCRIPT SRC="/js/cookies.js" TYPE="application/javascript"></SCRIPT>
|
<SCRIPT SRC="/js/cookies.js" TYPE="application/javascript"></SCRIPT>
|
||||||
<SCRIPT SRC="/js/sheets.js" TYPE="application/javascript"></SCRIPT>
|
<SCRIPT SRC="/js/sheets.js" TYPE="application/javascript"></SCRIPT>
|
||||||
@ -16,31 +17,31 @@ function time(){
|
|||||||
}
|
}
|
||||||
var interval = window.setInterval(time, 1000); /* every second */
|
var interval = window.setInterval(time, 1000); /* every second */
|
||||||
</SCRIPT>
|
</SCRIPT>
|
||||||
<CENTER>
|
_center(`
|
||||||
<PRE ID="time">Enable JavaScript to see the date and time.</PRE>
|
<PRE ID="time">Enable JavaScript to see the date and time.</PRE>
|
||||||
<P><I><B>Anti-socialization</B>
|
<P><I>_bold(`Anti-socialization')
|
||||||
<A HREF="https://discord.com/app">Discord</A>,
|
_hyperlink(`https://discord.com/app', `Discord'),
|
||||||
<A HREF="https://old.reddit.com/new">Reddit</A>,
|
_hyperlink(`https://old.reddit.com/new', `Reddit'),
|
||||||
<A HREF="https://www.unitedbsd.com/">UnitedBSD</A>
|
_hyperlink(`https://www.unitedbsd.com/', `UnitedBSD')
|
||||||
</I></P>
|
</I></P>
|
||||||
<P><I><B>Consumption</B>
|
<P><I>_bold(`Consumption')
|
||||||
<A HREF="https://open.spotify.com/">Spotify</A>,
|
_hyperlink(`https://open.spotify.com/', `Spotify'),
|
||||||
<A HREF="https://yewtu.be/">YouTube</A>
|
_hyperlink(`https://yewtu.be/', `YouTube')
|
||||||
</I></P>
|
</I></P>
|
||||||
<P><I><B>Propaganda</B>
|
<P><I>_bold(`Propaganda')
|
||||||
<A HREF="https://dprktoday.com/home/e">DPRK Today</A>,
|
_hyperlink(`https://dprktoday.com/home/e', `DPRK Today'),
|
||||||
<A HREF="https://text.npr.org/">NPR</A>,
|
_hyperlink(`https://text.npr.org/', `NPR'),
|
||||||
<A HREF="https://wttr.in/">wttr.in</A>
|
_hyperlink(`https://wttr.in/?m', `wttr.in')
|
||||||
</I></P>
|
</I></P>
|
||||||
<P><I><B>Time-frittering</B>
|
<P><I>_bold(`Time-frittering')
|
||||||
<A HREF="https://connect-4.org/">Connect 4</A>,
|
_hyperlink(`https://connect-4.org/', `Connect 4'),
|
||||||
<A HREF="https://timewarple.com/">Warple</A>
|
_hyperlink(`https://timewarple.com/', `Wordle')
|
||||||
</I></P>
|
</I></P>
|
||||||
<P><I><B>Guided wandering</B>
|
<P><I>_bold(`Guided wandering')
|
||||||
<A HREF="https://duckduckgo.com/">DuckDuckGo</A>,
|
_hyperlink(`https://duckduckgo.com/', `DuckDuckGo'),
|
||||||
<A HREF="https://yandex.ru/">Яндекс</A>
|
_hyperlink(`https://yandex.ru/', `Яндекс')
|
||||||
</I></P>
|
</I></P>
|
||||||
<P><B><A HREF="http://www.trinity.moe/bookmarks">Bookmarks</B></A>; <A HREF="https://mail.cock.li/">Cock Mail</A></P>
|
<P>_bold(`_hyperlink(`http://www.trinity.moe/bookmarks', `Bookmarks')'); _bold(`_hyperlink(`https://mail.cock.li/', `Cock Mail')')</P>
|
||||||
</CENTER>
|
')
|
||||||
</BODY>
|
')
|
||||||
</HTML>
|
</HTML>
|
||||||
|
@ -1,7 +1,11 @@
|
|||||||
define(`_code', `<CODE>$1</CODE>')
|
define(`_body', `<BODY>$1</BODY>')dnl
|
||||||
define(`_hyperlink', `<A HREF="$1">$2</A>')
|
define(`_bold', `<B>$1</B>')dnl
|
||||||
define(`_literal_hyperlink', `_hyperlink($1, $1)')
|
define(`_center', `<CENTER>$1</CENTER>')dnl
|
||||||
define(`_td', `<TD>$1</TD>')
|
define(`_code', `<CODE>$1</CODE>')dnl
|
||||||
define(`_th', `<TH>$1</TH>')
|
define(`_hyperlink', `<A HREF="$1">$2</A>')dnl
|
||||||
define(`_tr', `<TR>$1</TR>')
|
define(`_literal_hyperlink', `_hyperlink($1, $1)')dnl
|
||||||
define(`_BAR', `<HR ALIGN="left" SIZE="1" WIDTH="25%" />')
|
define(`_italic', `<I>$1</I>')dnl
|
||||||
|
define(`_td', `<TD>$1</TD>')dnl
|
||||||
|
define(`_th', `<TH>$1</TH>')dnl
|
||||||
|
define(`_tr', `<TR>$1</TR>')dnl
|
||||||
|
define(`_BAR', `<HR ALIGN="left" SIZE="1" WIDTH="25%" />')dnl
|
||||||
|
Loading…
Reference in New Issue
Block a user