mirror of https://github.com/nealey/woozle.org.git
work around firefox disconnect plugin adding to HTML
This commit is contained in:
parent
657b7b35dc
commit
0efbcfc3e3
13
index.mdwn
13
index.mdwn
|
@ -4,20 +4,21 @@ Title: Home
|
||||||
action="https://woozle.org/mail.cgi/"
|
action="https://woozle.org/mail.cgi/"
|
||||||
method="post">
|
method="post">
|
||||||
Username
|
Username
|
||||||
<input type="text" name="user" size="15" />
|
<input type="text" name="user" size="15">
|
||||||
Password
|
Password
|
||||||
<input type="password" name="password" size="15" />
|
<input type="password" name="password" size="15">
|
||||||
<input type="submit" value="Read Email" />
|
<input type="submit" value="Read Email">
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<!--
|
|
||||||
ssh fingerprint for woozle.org: 63:ac:b0:e9:ee:9f:a9:4f:55:0a:4a:42:5d:45:47:06
|
|
||||||
-->
|
|
||||||
|
|
||||||
Woozle.org provides shells, email, and web hosting for no cost,
|
Woozle.org provides shells, email, and web hosting for no cost,
|
||||||
without advertisements, and with a focus on security. Accounts are
|
without advertisements, and with a focus on security. Accounts are
|
||||||
held by folks who know the right person to ask.
|
held by folks who know the right person to ask.
|
||||||
|
|
||||||
|
<!--
|
||||||
|
ssh fingerprint for woozle.org: 63:ac:b0:e9:ee:9f:a9:4f:55:0a:4a:42:5d:45:47:06
|
||||||
|
-->
|
||||||
|
|
||||||
3 Feb: Web Server Change
|
3 Feb: Web Server Change
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
|
|
|
@ -11,13 +11,13 @@ body {
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
body h1:first-child {
|
h1#title {
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
body h1:first-child:before {
|
h1#title:before {
|
||||||
font-size: 300%;
|
font-size: 300%;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
content: "Woozle";
|
content: "Woozle";
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>TITLE</title>
|
<title>TITLE</title>
|
||||||
<meta name="viewport" content="width=device-width" />
|
<meta name="viewport" content="width=device-width">
|
||||||
<link rel="stylesheet" href="/style.css" type="text/css" />
|
<link rel="stylesheet" href="/style.css" type="text/css">
|
||||||
<link rel="icon" type="image/png" href="/icon.png" />
|
<link rel="icon" type="image/png" href="/icon.png">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>TITLE</h1>
|
<h1 id="title">TITLE</h1>
|
||||||
<nav>
|
<nav>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/">Home</a></li>
|
<li><a href="/">Home</a></li>
|
||||||
|
|
Loading…
Reference in New Issue