more
This commit is contained in:
parent
ec2fbf2787
commit
400f66ae64
@ -26,7 +26,7 @@ DNS = 10.0.1.8
|
||||
|
||||
# lezzo
|
||||
[Peer]
|
||||
PublicKey =
|
||||
PublicKey = sU1Cya3Ej6kQMidcwk3PMxzqNY12JfDAROeayPG5PXM= # server pubkey
|
||||
Endpoint = tubo.lezzo.org:51888
|
||||
PersistentKeepalive = 25
|
||||
AllowedIPs = 0.0.0.0/0
|
||||
|
221
welcome/firsttime.html
Normal file
221
welcome/firsttime.html
Normal file
@ -0,0 +1,221 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>CATHEDRAL WARD</title>
|
||||
<link rel="shortcut icon" href="./tumblr_m3j3x0f0yd1qdlkyg.gif">
|
||||
<link href="https://fonts.googleapis.com/css?family=UnifrakturCook|Short+Stack|Inconsolata|Roboto+Condensed:700&display=swap" rel="stylesheet">
|
||||
|
||||
<style>
|
||||
*, body, a, a:hover {cursor: url('./tumblr_inline_mulfeg4lCJ1qid2nw.gif'), auto;}
|
||||
|
||||
body {
|
||||
background: #f8e300;
|
||||
background-image: url('./tumblr_static_-518411682-content_640_v2.gif');
|
||||
background-size: cover;
|
||||
background-attachment: fixed;
|
||||
font-family: 'inconsolata';
|
||||
font-size: 26px;
|
||||
color: #33f7ff;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
text-shadow: -1px 0 5px #000aff, 0 1px 5px #000aff, 1px 0 5px #000aff, 0 -1px 5px #000aff;
|
||||
}
|
||||
|
||||
#sidebar {
|
||||
height: 100%;
|
||||
width: 25%;
|
||||
box-sizing: border-box;
|
||||
background: #01013d;
|
||||
background-image: url('./tumblr_oxomfkqzO81vh723yo4_400.jpg');
|
||||
background-attachment: local;
|
||||
text-align: center;
|
||||
border-right: 5px ridge #46ff46;
|
||||
margin: auto;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
float: left;
|
||||
padding: 15px;
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
box-shadow: 10px 0px 25px #000;
|
||||
}
|
||||
|
||||
#header {
|
||||
font-size: 48px;
|
||||
}
|
||||
|
||||
#marquee {
|
||||
text-align: center;
|
||||
color: #33f7ff;
|
||||
font-size: 44px;
|
||||
font-weight: bold;
|
||||
text-shadow: -1px 0 5px #000aff, 0 1px 5px #000aff, 1px 0 5px #000aff, 0 -1px 5px #000aff;
|
||||
}
|
||||
|
||||
#navbox {
|
||||
/* height: 212px; */
|
||||
background: #0b0416;
|
||||
border: 5px outset #46ff46;
|
||||
padding: 5px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
tr, td {
|
||||
width: 100%;
|
||||
border: 2px outset #46ff46;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
#hellenicnav {
|
||||
width: 600px;
|
||||
background: #01013d;
|
||||
background-image: url('./tumblr_oxomfkqzO81vh723yo4_400.jpg');
|
||||
background-attachment: local;
|
||||
text-align: center;
|
||||
border: 5px outset #46ff46;
|
||||
margin-top: 25px;
|
||||
margin-left: 600px;
|
||||
margin-bottom: 50px;
|
||||
padding: 15px;
|
||||
position: relative;
|
||||
box-shadow: 10px 10px 25px #000;
|
||||
}
|
||||
|
||||
#tamrielicnav {
|
||||
width: 600px;
|
||||
background: #01013d;
|
||||
background-image: url('./tumblr_oxomfkqzO81vh723yo4_400.jpg');
|
||||
background-attachment: local;
|
||||
text-align: center;
|
||||
border: 5px outset #46ff46;
|
||||
margin-top: 25px;
|
||||
margin-left: 600px;
|
||||
margin-bottom: 50px;
|
||||
padding: 15px;
|
||||
position: relative;
|
||||
box-shadow: 10px 10px 25px #000;
|
||||
}
|
||||
|
||||
#miscnav {
|
||||
width: 600px;
|
||||
background: #01013d;
|
||||
background-image: url('./tumblr_oxomfkqzO81vh723yo4_400.jpg');
|
||||
background-attachment: local;
|
||||
text-align: center;
|
||||
border: 5px outset #46ff46;
|
||||
margin-top: 25px;
|
||||
margin-left: 600px;
|
||||
margin-bottom: 25px;
|
||||
padding: 15px;
|
||||
position: relative;
|
||||
box-shadow: 10px 10px 25px #000;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #ff86ce;
|
||||
transition: all 0.2s ease;
|
||||
text-decoration:none;
|
||||
text-shadow: -1px 0 5px #fe2ba9, 0 1px 5px #fe2ba9, 1px 0 5px #fe2ba9, 0 -1px 5px #fe2ba9;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #fff;
|
||||
text-shadow: -1px 0 5px #fe2ba9, 0 1px 5px #fe2ba9, 1px 0 5px #fe2ba9, 0 -1px 5px #fe2ba9;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="sidebar">
|
||||
<div id="header">BENVENUTO NELLA NOSTRA CAPPELLA</div>
|
||||
<!-- big img start -->
|
||||
<img height="265px" src="./tumblr_p1hu3oGbnl1v9ek4so1_400.gif">
|
||||
<!-- big img end -->
|
||||
<br>
|
||||
:^).<br>
|
||||
Unisciti a noi in questa preghiera per la grande lezza famiglia.
|
||||
<br>
|
||||
<br>
|
||||
<!-- navbox start -->
|
||||
<div id="navbox">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="/welcome">lista dei servizi</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="/blog">blog</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="/secretwiki">wiki</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="/bots.html">bots</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="/welcome/memberships.html">memberships</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- navbox end -->
|
||||
<br>
|
||||
<!-- back button start -->
|
||||
MA LE INFO?
|
||||
<br>
|
||||
intorno a te :^)
|
||||
<br>
|
||||
<a href="/happy/23"> /happy/23/ </a>
|
||||
</p>
|
||||
<!-- back button end -->
|
||||
<!-- text field end -->
|
||||
</div>
|
||||
<div id="hellenicnav">
|
||||
<img src="./tumblr-inline-p9nywu-Cv4b1vpcje2-500.gif"> Regola d'oro <img src="./tumblr-inline-p9nywu-Cv4b1vpcje2-500.gif">
|
||||
<p>
|
||||
Anche se sei venuto a conoscenza dei nostri nomi irl, non nominarli MAI.<br> Sii creativo, usa dei nick.
|
||||
<br>
|
||||
Non dare le tue credenziali in giro, contattaci se vuoi dare accesso a qualcuno
|
||||
<br>
|
||||
<br>
|
||||
<a> l'unica regola: ci sono regole </a>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
Non essere timoroso, <a href="/welcome">Frances</a> ti aspetta.
|
||||
</p>
|
||||
<img src="./tumblr_ocgf1i2kvk1uypm68o1_400.gif">
|
||||
</div>
|
||||
<div id="hellenicnav">
|
||||
<img src="./tumblr-inline-p9nywu-Cv4b1vpcje2-500.gif"> Chi siamo <img src="./tumblr-inline-p9nywu-Cv4b1vpcje2-500.gif">
|
||||
<p>
|
||||
<a>gaypimpa, bparodi</a>
|
||||
<br>
|
||||
old fag
|
||||
<br>
|
||||
<a>ruspante</a>
|
||||
<br>
|
||||
the boy from the hood
|
||||
<br>
|
||||
<a>brasello, dicklequick, alibaba</a>
|
||||
<br>
|
||||
guarda la montagna, lui e` in cima
|
||||
<br>
|
||||
</p>
|
||||
<img src="./tumblr_ocgf1i2kvk1uypm68o1_400.gif">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
BIN
welcome/tumblr-inline-p9nywu-Cv4b1vpcje2-500.gif
Normal file
BIN
welcome/tumblr-inline-p9nywu-Cv4b1vpcje2-500.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 584 B |
BIN
welcome/tumblr-inline-p9nywu-Cv4b1vpcje2-500.gif.1
Normal file
BIN
welcome/tumblr-inline-p9nywu-Cv4b1vpcje2-500.gif.1
Normal file
Binary file not shown.
After Width: | Height: | Size: 584 B |
BIN
welcome/tumblr_ocgf1i2kvk1uypm68o1_400.gif
Normal file
BIN
welcome/tumblr_ocgf1i2kvk1uypm68o1_400.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
BIN
welcome/tumblr_oxomfkqzO81vh723yo4_400.jpg
Normal file
BIN
welcome/tumblr_oxomfkqzO81vh723yo4_400.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
BIN
welcome/tumblr_oxomfkqzO81vh723yo4_400.jpg.1
Normal file
BIN
welcome/tumblr_oxomfkqzO81vh723yo4_400.jpg.1
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
BIN
welcome/tumblr_p1hu3oGbnl1v9ek4so1_400.gif
Normal file
BIN
welcome/tumblr_p1hu3oGbnl1v9ek4so1_400.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 548 KiB |
Loading…
Reference in New Issue
Block a user